amazon-data

The Canopy API MCP Server gives AI assistants like Claude, ChatGPT, and Cursor real-time access to Amazon product data through the Model Context Protocol (MCP).

От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноМожет изменять данные

Что умеет

  • Get Amazon Asin From Gtin: Look up the ASIN for an Amazon product by its GTIN (ISBN, UPC or EAN code).
  • Get Amazon Author: Get detailed information about an Amazon author including their books.
  • Get Amazon Autocomplete: Get autocomplete suggestions for Amazon search terms.

Какие данные видит

Нужен ли аккаунт

Не нужен: сервер работает без входа

The Canopy API MCP Server gives AI assistants like Claude, ChatGPT, and Cursor real-time access to Amazon product data through the Model Context Protocol (MCP). Power agentic workflows for e-commerce research, competitive intelligence, price tracking, product discovery, and Amazon SEO, all backed by the Canopy API.

▎ Get your API key at canopyapi.co to start querying Amazon product data from any MCP-compatible client.

Why Canopy API MCP?

  • Real-time Amazon product data: ASIN lookups, variants, offers, stock, sales estimates, and reviews
  • Built for AI agents: structured JSON-RPC responses ready for LLM tool use
  • Streamable HTTP transport at /mcp, the current MCP spec convention
  • Flexible authentication: pass your Canopy API key via CANOPY-API-KEY, API-KEY, X-API-KEY, or Authorization: Bearer headers

Use Cases

  • Amazon price monitoring and competitive pricing intelligence
  • Product research agents that compare ASINs, variants, and offers
  • Review summarization and sentiment analysis pipelines
  • Sales and stock estimation for sellers and brand managers
  • Category and bestseller discovery for merchandising and trend analysis
  • GTIN ↔ ASIN reconciliation for catalog matching and PIM workflows
  • Amazon SEO research via autocomplete and search-result analysis

Available MCP Tools

Product Data

  • get_amazon_product: full product details by ASIN, Amazon URL, or GTIN
  • get_amazon_product_variants: size, color, and style variants
  • get_amazon_product_offers: Buy Box and third-party seller offers
  • get_amazon_product_stock: inventory level estimates
  • get_amazon_product_sales: weekly, monthly, and annual sales estimates
  • get_amazon_product_reviews: top customer reviews
  • get_amazon_asin_from_gtin / get_amazon_gtin_from_asin: identifier conversion

Search & Discovery

  • search_amazon_products: keyword search with filters and sorting
  • get_amazon_autocomplete: Amazon search suggestions, great for keyword research
  • get_amazon_deals: live Amazon deals
  • get_amazon_bestsellers / get_amazon_bestseller_categories: bestseller rankings

Catalog & Entities

  • get_amazon_categories: root category taxonomy
  • get_amazon_category: category details, products, and subcategories
  • get_amazon_seller: seller profiles and listings
  • get_amazon_author: author profiles and book catalogs

Getting Started

  1. Sign up at canopyapi.co to get your API key.
  2. Connect any MCP-compatible client, such as Claude Desktop, Cursor, MCP Inspector, or custom agents, to the /mcp endpoint.
  3. Include your API key in a request header. CANOPY-API-KEY: is recommended.
curl -X POST https://mcp.canopyapi.co/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "CANOPY-API-KEY: $CANOPY_API_KEY" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'

Links

  • 🌐 Canopy API: canopyapi.co
  • 📚 API Documentation: Docs
  • 🔑 Get an API Key: canopyapi.co
  • 🤖 Model Context Protocol: modelcontextprotocol.io
  • ⚙️ xmcp framework: xmcp.dev
Список инструментов сервера (17)

Технические названия из tools/list. Нужны только разработчикам.

get_amazon_asin_from_gtinLook up the ASIN for an Amazon product by its GTIN (ISBN, UPC or EAN code).
get_amazon_authorGet detailed information about an Amazon author including their books.
get_amazon_autocompleteGet autocomplete suggestions for Amazon search terms.
get_amazon_bestseller_categoriesGet the list of Amazon best seller categories. Useful for discovering categoryIds to pass to get_amazon_bestsellers.
get_amazon_bestsellersGet Amazon best-selling products for a category. Provide either categoryId or url.
get_amazon_categoriesGet the root level Amazon product category taxonomy.
get_amazon_categoryGet detailed information about a specific Amazon category including products and subcategories.
get_amazon_dealsRetrieve current deals from Amazon. Returns a paginated list of products currently on deal, including deal-specific information like discount percentages and deal badges.
get_amazon_gtin_from_asinLook up the GTIN (ISBN, UPC or EAN code) for an Amazon product by its ASIN.
get_amazon_product_offersGet the list of seller offers (and Buy Box info) for an Amazon product by ASIN, URL, or GTIN.
get_amazon_product_reviewsFetch top reviews for an Amazon product by ASIN, URL, or GTIN.
get_amazon_product_salesFetch sales estimates for an Amazon product by ASIN, URL, or GTIN.
get_amazon_product_variantsFetch product variants for an Amazon product by ASIN, URL, or GTIN.
get_amazon_product_stockFetch stock level estimates for an Amazon product by ASIN, URL, or GTIN.
get_amazon_productFetch detailed Amazon product information by ASIN, URL, or GTIN.
get_amazon_sellerGet detailed information about an Amazon seller including their products.
search_amazon_productsSearch for Amazon products with filters and sorting options.