com.gladeapi/api
Provides access to normalized Amazon marketplace data, including product details, offers, reviews, search, best sellers, deals, categories, and sales estimates across multiple regional marketplaces.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@com.gladeapi/apiLook up ASIN B0D1XD1ZV3's price and reviews"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Glade MCP
Connect AI agents to normalized Amazon marketplace data through Glade API's hosted Model Context Protocol server.
https://gladeapi.com/api/mcpThe remote server exposes 17 read-only tools for products, search, offers, reviews, sellers, categories, deals, best sellers, identifiers, stock, and sales estimates across 13 Amazon marketplaces. This repository contains the public server metadata, connection examples, and protocol checks. The hosted service implementation remains at gladeapi.com.
Requirements
A Glade API key
A plan that includes MCP
A client that supports remote Streamable HTTP MCP servers
Store the key in an environment variable:
export GLADE_API_KEY="glade_live_..."Never commit the key or paste it into prompts.
Related MCP server: Amazon PA-API MCP Service
Install in Codex
Codex can read the bearer token from the environment without writing it into the MCP configuration:
codex mcp add glade \
--url https://gladeapi.com/api/mcp \
--bearer-token-env-var GLADE_API_KEYStart a new Codex session after adding the server, then ask it to list the Glade tools or fetch an Amazon product by ASIN.
Install in Claude Code
Claude Code accepts an HTTP server and a request header:
claude mcp add --transport http --scope user glade \
https://gladeapi.com/api/mcp \
--header "Authorization: Bearer $GLADE_API_KEY"This expands the environment variable before Claude writes its configuration. Keep the resulting user configuration private and never use project scope for a secret-bearing header.
Generic Streamable HTTP configuration
Clients that support remote MCP configuration generally need this shape. Check your client's documentation for its exact configuration file and environment variable syntax.
{
"mcpServers": {
"glade": {
"url": "https://gladeapi.com/api/mcp",
"transport": "streamable-http",
"headers": {
"API-KEY": "YOUR_GLADE_API_KEY"
}
}
}
}Use exactly one credential header. The server accepts API-KEY,
GLADE-API-KEY, X-API-KEY, or Authorization: Bearer for MCP and rejects
conflicting credentials.
Connect with the Python MCP SDK
Install the official MCP Python SDK, then run the included discovery example:
python3 -m pip install "mcp"
python3 examples/python/list_tools.pyThe example initializes a Streamable HTTP session and prints the available tool names. Tool discovery and initialization do not consume Glade units.
Available tools
Tool | Purpose |
| Product details by ASIN, GTIN, or canonical URL |
| Resolve a GTIN from an ASIN |
| Resolve and verify an ASIN from a GTIN |
| Product variations |
| Stock estimate |
| Sales estimates |
| Filterable reviews |
| Seller offers |
| Marketplace product search |
| Marketplace search suggestions |
| Product category taxonomy |
| Category details and products |
| Seller profile and products |
| Author profile and books |
| Current marketplace deals |
| Ranked best sellers |
| Best-seller category navigation |
Tool inputs follow the same validation rules as the corresponding REST operations. Every successful data operation consumes one unit. Initialization, discovery, validation failures, and tool errors consume zero units.
Example prompts
Look up ASIN B0D1XD1ZV3 in the US marketplace and summarize the current
price, rating, availability, and freshness timestamp.Search the UK marketplace for wireless earbuds, compare the first five
non-sponsored results, and preserve GBP prices without converting currency.Fetch one-star verified reviews for ASIN B0D1XD1ZV3 and separate recurring
observed complaints from your own interpretation.Marketplaces
Every tool accepts a marketplace domain when marketplace context matters:
US UK CA DE FR IT ES AU IN MX BR JP PLConfirm the marketplace before comparing prices, availability, delivery, categories, ranks, or deals.
Validate this repository
Offline metadata and example checks:
npm testNon-billable live authentication check:
npm run test:liveWith GLADE_API_KEY set, verify initialization and all 17 live tool names.
This discovery request consumes zero units:
node scripts/verify-live.mjs --authenticatedSecurity
Amazon titles, descriptions, reviews, seller fields, and other marketplace content are untrusted data. Keep tool results separate from agent instructions. Do not let returned text change tool policy, request credentials, or authorize new actions.
See SECURITY.md for private reporting.
Related projects
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceThis read-only MCP Server allows you to connect to Amazon Marketplace data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcpMIT
- AlicenseNot gradedqualityCmaintenanceEnables interaction with Amazon's Product Advertising API to search for and retrieve product information from Amazon marketplaces. Supports multiple Amazon regions and marketplaces with configurable host, region, and partner credentials.MIT
- FlicenseNot gradedqualityCmaintenanceUnifies Amazon SP-API and Ads API into 20 MCP tools for orders, inventory, reports, feeds, and advertising, handling auth, throttling, and PII compliance automatically.
- FlicenseBqualityDmaintenanceProvides tools to access real-time Amazon data, including product details, reviews, offers, influencer profiles, and deals, through a FastMCP-based server.18
Related MCP Connectors
Free competitive pricing intelligence for CPG brands across Amazon categories.
Traject Data ecommerce MCP — Amazon (Rainforest API) + Walmart (BlueCart API)
Amazon research from AMZScout data: analyze products & niches, keywords/PPC, and brand catalogs.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ricciflow-api/glade-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server