Skip to main content
Glade API’s MCP (Model Context Protocol) endpoint exposes all 17 Amazon data operations as typed tools at /api/mcp. Any MCP-compatible AI agent, LLM, or autonomous workflow can call these tools to fetch live Amazon product, search, review, offer, and sales data without writing custom integration code.

What is MCP?

MCP (Model Context Protocol) is an open standard for exposing typed tools to AI agents. Clients send JSON-RPC requests describing which tool to call and with what parameters. Glade API executes the corresponding Amazon data operation and returns structured, schema-validated results. Every piece of marketplace content that flows through the MCP endpoint — product titles, descriptions, review bodies, seller names — is treated as opaque data, never as tool instructions. This design prevents AI agents from being manipulated by content embedded in Amazon listings or reviews.
Glade API’s MCP endpoint passes marketplace content as opaque data objects, never as instructions. This prevents AI agents from being manipulated by product descriptions or reviews.

Connecting to the MCP endpoint

Send JSON-RPC 2.0 requests to the following endpoint:
Glade API accepts your API key in any of these header formats, so you can use whichever convention your MCP client already sends: The endpoint is compatible with any MCP client, including Claude Desktop, Cursor, and custom agents built on the MCP SDK.
Add the following to your claude_desktop_config.json under the mcpServers key:

Installing the Agent Skill

Glade API provides a downloadable amazon-data Skill file designed to help AI agents use the MCP endpoint effectively. The Skill documents safe API key setup, how to choose a marketplace, pagination strategies, cost awareness, data freshness considerations, and when to prefer REST, GraphQL, or MCP for a given task. Download the Skill file and add it to your agent’s context:
With the Skill loaded, your agent can make informed decisions about which tool to call, how many pages to fetch, and how to interpret result fields — without you needing to encode that logic manually in a system prompt.

Available tools

All 17 REST operations are available as MCP tools. Every tool uses the same parameter validation and response contract as the corresponding REST endpoint.

Example agent workflow

Here’s a complete example of an AI assistant helping a user find the best wireless earbuds under £50 in the UK marketplace. The agent chains four MCP tool calls to produce a personalized recommendation.
1

Search for matching products

The agent calls get_AmazonProductSearchResults with searchTerm="wireless earbuds", domain="UK", and maxPrice="50". The response returns a ranked list of products with titles, ASINs, prices, and ratings.
2

Select the top candidates

The agent filters the results to the three products with the highest rating values. Products with fewer than a threshold number of ratingsTotal (for example, fewer than 100 reviews) are deprioritized to avoid noise from lightly reviewed listings.
3

Fetch reviews for each candidate

The agent calls get_AmazonProductReviews for each of the three ASINs, filtering to rating=FIVE_STAR and onlyVerifiedReviews=true. This surfaces the strongest positive signals from confirmed buyers.
4

Summarize and present

The agent reads the body field from the top reviews for each product and synthesizes a short pros/cons summary for the user — grounded in real customer language, not marketing copy.
Each step consumes one unit. For cost-conscious agents, prefer GraphQL to fetch only the fields you need, reducing response size while keeping unit cost the same.
The same chaining pattern applies to many other research and shopping tasks: sourcing workflows, competitor analysis, catalog enrichment, and inventory monitoring. Because every tool returns structured, typed data, agents can reliably parse and act on results without fragile text extraction.