MCP360 · Schema

MCP360 tool input/output schemas

Per-service tool contracts harvested verbatim from GET https://connect.mcp360.ai/api/v1/{service}. Output schemas are published here and are NOT present in the generated per-service OpenAPI (whose 200 response types data as a bare object).

mcpmcp-servermcp-gatewayai-agentsagent-toolstool-integrationunified-apiapi-gatewayno-codellmstxtseosearchserpweb-scrapinge-commercewhoisdnsgeolocationemail-verification
View JSON Schema on GitHub

JSON Schema

mcp360-tool-schemas.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MCP360 tool input/output schemas",
  "description": "Per-service tool contracts harvested verbatim from GET https://connect.mcp360.ai/api/v1/{service}. Output schemas are published here and are NOT present in the generated per-service OpenAPI (whose 200 response types data as a bare object).",
  "x-source": "https://connect.mcp360.ai/api/v1/{service}",
  "x-fetched": "2026-08-09",
  "services": {
    "amazon-search": {
      "name": "Amazon Product Search Tools",
      "description": "Amazon product search, position tracking, reviews, and pricing data",
      "version": "1.0.0",
      "isPremium": false,
      "creditsPerUse": 1,
      "tools": [
        {
          "name": "search_products",
          "endpoint": "/api/v1/amazon-search/search_products",
          "method": "POST",
          "inputSchema": {
            "type": "object",
            "properties": {
              "query": {
                "type": "string",
                "minLength": 1,
                "maxLength": 500,
                "description": "Product search query"
              },
              "country": {
                "type": "string",
                "pattern": "^(us|uk|de|fr|jp|ca|in|es|it|au|br|mx|nl|ae|sg|se|pl|tr|sa|eg)$",
                "default": "us",
                "description": "Amazon marketplace: 'us', 'uk', 'de', 'fr', 'jp', 'ca', 'in', etc."
              },
              "min_price": {
                "type": "number",
                "exclusiveMinimum": 0,
                "description": "Minimum price filter"
              },
              "max_price": {
                "type": "number",
                "exclusiveMinimum": 0,
                "description": "Maximum price filter"
              },
              "prime_only": {
                "type": "boolean",
                "default": false,
                "description": "Show only Prime-eligible products"
              },
              "min_rating": {
                "type": "number",
                "minimum": 1,
                "maximum": 5,
                "description": "Minimum customer rating (1-5)"
              }
            },
            "required": [
              "query"
            ],
            "additionalProperties": false
          },
          "outputSchema": {
            "type": "object",
            "properties": {
              "query": {
                "type": "string"
              },
              "country": {
                "type": "string"
              },
              "products": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "asin": {
                      "type": "string"
                    },
                    "link": {
                      "type": "string"
                    },
                    "price": {
                      "type": "string"
                    },
                    "title": {
                      "type": "string"
                    },
                    "coupon": {
                      "type": "object",
                      "properties": {
                        "text": {
                          "type": "string"
                        },
                        "badge_text": {
                          "type": "string"
                        }
                      }
                    },
                    "rating": {
                      "type": "number"
                    },
                    "reviews": {
                      "type": "number"
                    },
                    "position": {
                      "type": "number"
                    },
                    "thumbnail": {
                      "type": "string"
                    },
                    "fulfillment": {
                      "type": "object",
                      "properties": {
                        "fastest_delivery": {
                          "type": "object",
                          "properties": {
                            "date": {
                              "type": "string"
                            },
                            "text": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            }
                          }
                        },
                        "standard_delivery": {
                          "type": "object",
                          "properties": {
                            "date": {
                              "type": "string"
                            },
                            "text": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            },
                            "condition": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    },
                    "more_offers": {
                      "type": "object",
                      "properties": {
                        "link": {
                          "type": "string"
                        },
                        "description": {
                          "type": "string"
                        },
                        "lowest_price": {
                          "type": "string"
                        },
                        "offers_count": {
                          "type": "number"
                        },
                        "extracted_lowest_price": {
                          "type": "number"
                        }
                      }
                    },
                    "is_sponsored": {
                      "type": "boolean"
                    },
                    "recent_sales": {
                      "type": "string"
                    },
                    "original_price": {
                      "type": "string"
                    },
                    "extracted_price": {
                      "type": "number"
                    },
                    "is_limited_time_deal": {
                      "type": "boolean"
                    },
                    "extracted_recent_sales": {
                      "type": "number"
                    },
                    "extracted_original_price": {
                      "type": "number"
                    }
                  }
                }
              },
              "total_results": {
                "type": "number"
              }
            }
          }
        },
        {
          "name": "get_product_details",
          "endpoint": "/api/v1/amazon-search/get_product_details",
          "method": "POST",
          "inputSchema": {
            "type": "object",
            "properties": {
              "asin": {
                "type": "string",
                "minLength": 10,
                "maxLength": 10,
                "pattern": "^[A-Z0-9]{10}$",
                "description": "Amazon ASIN (product identifier)"
              },
              "country": {
                "type": "string",
                "pattern": "^(us|uk|de|fr|jp|ca|in|es|it|au|br|mx|nl|ae|sg|se|pl|tr|sa|eg)$",
                "default": "us",
                "description": "Amazon marketplace: 'us', 'uk', 'de', 'fr', 'jp', 'ca', 'in'"
              }
            },
            "required": [
              "asin"
            ],
            "additionalProperties": false
          },
          "outputSchema": {
            "type": "object",
            "properties": {
              "product": {
                "type": "object",
                "properties": {
                  "asin": {
                    "type": "string"
                  },
                  "link": {
                    "type": "string"
                  },
                  "title": {
                    "type": "string"
                  },
                  "buybox": {
                    "type": "object",
                    "properties": {
                      "save": {
                        "type": "object",
                        "properties": {
                          "percentage": {
                            "type": "number"
                          }
                        }
                      },
                      "price": {
                        "type": "object",
                        "properties": {
                          "raw": {
                            "type": "string"
                          },
                          "value": {
                            "type": "number"
                          },
                          "symbol": {
                            "type": "string"
                          },
                          "currency": {
                            "type": "string"
                          }
                        }
                      },
                      "fulfillment": {
                        "type": "object",
                        "properties": {
                          "sold_by": {
                            "type": "string"
                          },
                          "is_sold_by_amazon": {
                            "type": "boolean"
                          },
                          "standard_delivery": {
                            "type": "object",
                            "properties": {
                              "date": {
                                "type": "string"
                              },
                              "text": {
                                "type": "string"
                              },
                              "type": {
                                "type": "string"
                              },
                              "condition": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      },
                      "availability": {
                        "type": "string"
                      },
                      "original_price": {
                        "type": "object",
                        "properties": {
                          "raw": {
                            "type": "string"
                          },
                          "value": {
                            "type": "number"
                          },
                          "symbol": {
                            "type": "string"
                          },
                          "currency": {
                            "type": "string"
                          }
                        }
                      },
                      "offer_listing_id": {
                        "type": "string"
                      },
                      "mixed_offers_from": {
                        "type": "object",
                        "properties": {
                          "link": {
                            "type": "string"
                          },
                          "price": {
                            "type": "object",
                            "properties": {
                              "raw": {
                                "type": "string"
                              },
                              "value": {
                                "type": "number"
                              },
                              "symbol": {
                                "type": "string"
                              },
                              "currency": {
                                "type": "string"
                              }
                            }
                          }
                        }
                      },
                      "maximum_order_quantity": {
                        "type": "number"
                      }
                    }
                  },
                  "images": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "link": {
                          "type": "string"
                        },
                        "variant": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "rating": {
                    "type": "number"
                  },
                  "reviews": {
                    "type": "number"
                  },
                  "variants": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "asin": {
                          "type": "string"
                        },
                        "link": {
                          "type": "string"
                        },
                        "title": {
                          "type": "string"
                        },
                        "dimensions": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string"
                              },
                              "value": {
                                "type": "string"
                              }
                            }
                          }
                        },
                        "is_current_product": {
                          "type": "boolean"
                        }
                      }
                    }
                  },
                  "attributes": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "value": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "main_image": {
                    "type": "string"
                  },
                  "brand_store": {
                    "type": "object",
                    "properties": {
                      "link": {
                        "type": "string"
                      }
                    }
                  },
                  "description": {
                    "type": "string"
                  },
                  "search_alias": {
                    "type": "object",
                    "properties": {
                      "title": {
                        "type": "string"
                      },
                      "value": {
                        "type": "string"
                      }
                    }
                  },
                  "marketplace_id": {
                    "type": "string"
                  },
                  "specifications": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "value": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "feature_bullets": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "bestsellers_rank": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "link": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "whats_in_the_box": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "bought_past_month": {
                    "type": "string"
                  }
                }
              },
              "similar_item": {
                "type": "object",
                "properties": {
                  "asin": {
                    "type": "string"
                  },
                  "link": {
                    "type": "string"
                  },
                  "image": {
                    "type": "string"
                  },
                  "price": {
                    "type": "object",
                    "properties": {
                      "raw": {
                        "type": "string"
                      },
                      "value": {
                        "type": "number"
                      },
                      "symbol": {
                        "type": "string"
                      },
                      "currency": {
                        "type": "string"
                      }
                    }
                  },
                  "title": {
                    "type": "string"
                  },
                  "rating": {
                    "type": "number"
                  },
                  "reviews": {
                    "type": "number"
                  }
                }
              },
              "review_results": {
                "type": "object",
                "properties": {
                  "local": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "asin": {
                          "type": "string"
                        },
                        "date": {
                          "type": "string"
                        },
                        "link": {
                          "type": "string"
                        },
                        "text": {
                          "type": "string"
                        },
                        "title": {
                          "type": "string"
                        },
                        "rating": {
                          "type": "number"
                        },
                        "profile": {
                          "type": "object",
                          "properties": {
                            "id": {
                              "type": "string"
                            },
                            "link": {
                              "type": "string"
                            },
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "helpful_votes": {
                          "type": "number"
                        },
                        "extracted_date": {
                          "type": "string"
                        },
                        "is_verified_purchase": {
                          "type": "boolean"
                        }
                      }
                    }
                  },
                  "global": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "date": {
                          "type": "string"
                        },
                        "text": {
                          "type": "string"
                        },
                        "title": {
                          "type": "string"
                        },
                        "rating": {
                          "type": "number"
                        },
                        "profile": {
                          "type": "object",
                          "properties": {
                            "name": {
                              "type": "string"
                            }
                          }
                        },
                        "extracted_date": {
                          "type": "string"
                        },
                        "is_verified_purchase": {
                          "type": "boolean"
                        }
                      }
                    }
                  }
                }
              },
              "search_metadata": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string"
                  },
                  "status": {
                    "type": "string"
                  },
                  "html_url": {
                    "type": "string"
                  },
                  "json_url": {
                    "type": "string"
                  },
                  "created_at": {
                    "type": "string"
                  },
                  "request_url": {
                    "type": "string"
                  },
                  "total_time_taken": {
                    "type": "number"
                  },
                  "parsing_time_taken": {
                    "type": "number"
                  },
                  "request_time_taken": {
                    "type": "number"
                  }
                }
              },
              "search_parameters": {
                "type": "object",
                "properties": {
                  "asin": {
                    "type": "string"
                  },
                  "engine": {
                    "type": "string"
                  },
                  "amazon_domain": {
                    "type": "string"
                  },
                  "delivery_country": {
                    "type": "string"
                  }
                }
              },
              "frequently_bought_together": {
                "type": "object",
                "properties": {
                  "products": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "asin": {
                          "type": "string"
                        },
                        "link": {
                          "type": "string"
                        },
                        "image": {
                          "type": "string"
                        },
                        "price": {
                          "type": "object",
                          "properties": {
                            "raw": {
                              "type": "string"
                            },
                            "value": {
                              "type": "number"
                            },
                            "symbol": {
                              "type": "string"
                            },
                            "currency": {
                              "type": "string"
                            }
                          }
                        },
                        "title": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "total_price": {
                    "type": "object",
                    "properties": {
                      "raw": {
                        "type": "string"
                      },
                      "value": {
                        "type": "number"
                      },
                      "symbol": {
                        "type": "string"
                      },
                      "currency": {
                        "type": "string"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        {
          "name": "filter_by_category",
          "endpoint": "/api/v1/amazon-search/filter_by_category",
          "method": "POST",
          "inputSchema": {
            "type": "object",
            "properties": {
              "query": {
                "type": "string",
                "minLength": 1,
                "maxLength": 500,
                "description": "Search query"
              },
              "category": {
                "type": "string",
                "minLength": 1,
                "description": "Category (e.g., 'Electronics', 'Books', 'Clothing')"
              },
              "country": {
                "type": "string",
                "pattern": "^(us|uk|de|fr|jp|ca|in|es|it|au|br|mx|nl|ae|sg|se|pl|tr|sa|eg)$",
                "default": "us",
                "description": "Amazon marketplace: 'us', 'uk', 'de', 'fr', 'jp', 'ca', 'in'"
              },
              "sort_by": {
                "type": "string",
                "enum": [
                  "featured",
                  "price_low_to_high",
                  "price_high_to_low",
                  "average_review",
                  "newest_arrivals",
                  "bestsellers"
                ],
                "description": "Sort by: 'featured', 'price_low_to_high', 'price_high_to_low', 'average_review', 'newest_arrivals', 'bestsellers'"
              }
            },
            "required": [
              "query",
              "category"
            ],
            "additionalProperties": false
          },
          "outputSchema": {
            "type": "object",
            "properties": {
              "query": {
                "type": "string"
              },
              "country": {
                "type": "string"
              },
              "category": {
                "type": "string"
              },
              "products": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "asin": {
                      "type": "string"
                    },
                    "link": {
                      "type": "string"
                    },
                    "price": {
                      "type": "string"
                    },
                    "title": {
                      "type": "string"
                    },
                    "rating": {
                      "type": "number"
                    },
                    "reviews": {
                      "type": "number"
                    },
                    "position": {
                      "type": "number"
                    },
                    "thumbnail": {
                      "type": "string"
                    },
                    "fulfillment": {
                      "type": "object",
                      "properties": {
                        "fastest_delivery": {
                          "type": "object",
                          "properties": {
                            "date": {
                              "type": "string"
                            },
                            "text": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            }
                          }
                        },
                        "standard_delivery": {
                          "type": "object",
                          "properties": {
                            "date": {
                              "type": "string"
                            },
                            "text": {
                              "type": "string"
                            },
                            "type": {
                              "type": "string"
                            },
                            "condition": {
                              "type": "string"
                            }
                          }
                        }
                      }
                    },
                    "more_offers": {
                      "type": "object",
                      "properties": {
                        "link": {
                          "type": "string"
                        },
                        "text": {
                          "type": "string"
                        }
                      }
                    },
                    "is_sponsored": {
                      "type": "boolean"
                    },
                    "recent_sales": {
                      "type": "string"
                    },
                    "original_price": {
                      "type": "string"
                    },
                    "extracted_price": {
                      "type": "number"
                    },
                    "is_limited_time_deal": {
                      "type": "boolean"
                    },
                    "extracted_recent_sales": {
                      "type": "number"
                    },
                    "extracted_original_price": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        {
          "name": "search_prime_products",
          "endpoint": "/api/v1/amazon-search/search_prime_products",
          "method": "POST",
          "inputSchema": {
            "type": "object",
            "properties": {
              "query": {
                "type": "string",
                "minLength": 1,
                "maxLength": 500,
                "description": "Product search query"
              },
              "country": {
                "type": "string",
                "pattern": "^(us|uk|de|fr|jp|ca|in|es|it|au|br|mx|nl|ae|sg|se|pl|tr|sa|eg)$",
                "default": "us",
                "description": "Amazon marketplace: 'us', 'uk', 'de', 'fr', 'jp', 'ca', 'in'"
              },
              "min_rating": {
                "type": "number",
                "minimum": 1,
                "maximum": 5,
                "description": "Minimum customer rating (1-5)"
              }
            },
            "required": [
              "query"
            ],
            "additionalProperties": false
          },
          "outputSchema": {
            "type": "object",
            "properties": {
              "query": {
                "type": "string"
              },
              "products": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "asin": {
                      "type": "string"
                    },
                    "link": {
                      "type": "string"
                    },
                    "tags": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "price": {
                      "type": "string"
                    },
                    "title": {
                      "type": "string"
                    },
                    "coupon": {
                      "type": "object",
                      "properties": {
                        "text": {
                          "type": "string"
                        },
                        "badge_text": {
                          "type": "string"
                        }
                      }
                    },
                    "rating": {
                      "type": "number"
                    },
                    "reviews": {
                      "type": "number"
                    },
                    "position": {
                      "type": "number"
                    },
                    "price_per"

# --- truncated at 32 KB (488 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/mcp360/refs/heads/main/json-schema/mcp360-tool-schemas.json