com.gladeapi/api
Glade MCP
通过 Glade API 托管的 Model Context Protocol 服务器,将 AI 代理连接到规范化的亚马逊市场数据。
https://gladeapi.com/api/mcp远程服务器在 13 个亚马逊市场中公开了 17 个只读工具,涵盖产品、搜索、报价、评论、卖家、类目、促销、畅销榜、标识符、库存和销售估算。本仓库包含公共服务器元数据、连接示例和协议检查。托管服务实现仍位于 gladeapi.com。
要求
一个 Glade API 账户
一个 Glade API 密钥
包含 MCP 的套餐
支持远程 Streamable HTTP MCP 服务器的客户端
将密钥存储在环境变量中:
export GLADE_API_KEY="glade_live_..."切勿将密钥提交到代码库或粘贴到提示词中。
Related MCP server: Amazon PA-API MCP Service
在 Codex 中安装
Codex 可以从环境中读取 Bearer 令牌,而无需将其写入 MCP 配置:
codex mcp add glade \
--url https://gladeapi.com/api/mcp \
--bearer-token-env-var GLADE_API_KEY添加服务器后启动新的 Codex 会话,然后要求它列出 Glade 工具或按 ASIN 获取亚马逊产品。
在 Claude Code 中安装
Claude Code 接受 HTTP 服务器和请求头:
claude mcp add --transport http --scope user glade \
https://gladeapi.com/api/mcp \
--header "Authorization: Bearer $GLADE_API_KEY"这会在 Claude 写入其配置之前展开环境变量。请将生成的用户配置保密,切勿对包含机密的请求头使用项目作用域。
通用 Streamable HTTP 配置
支持远程 MCP 配置的客户端通常需要这种形式。请查阅客户端文档以了解其确切的配置文件和环境变量语法。
{
"mcpServers": {
"glade": {
"url": "https://gladeapi.com/api/mcp",
"transport": "streamable-http",
"headers": {
"API-KEY": "YOUR_GLADE_API_KEY"
}
}
}
}请仅使用一个凭据请求头。服务器接受 API-KEY、GLADE-API-KEY、X-API-KEY 或 Authorization: Bearer 用于 MCP,并拒绝冲突的凭据。
使用 Python MCP SDK 连接
安装官方 MCP Python SDK,然后运行随附的发现示例:
python3 -m pip install "mcp"
python3 examples/python/list_tools.py该示例初始化一个 Streamable HTTP 会话并打印可用的工具名称。工具发现和初始化不消耗 Glade 单位。
可用工具
Tool | Purpose |
| 按 ASIN、GTIN 或规范 URL 获取产品详情 |
| 从 ASIN 解析 GTIN |
| 从 GTIN 解析并验证 ASIN |
| 产品变体 |
| 库存估算 |
| 销售估算 |
| 可筛选的评论 |
| 卖家报价 |
| 市场产品搜索 |
| 市场搜索建议 |
| 产品类目分类体系 |
| 类目详情和产品 |
| 卖家资料和产品 |
| 作者资料和图书 |
| 当前市场促销 |
| 排名畅销榜 |
| 畅销类目导航 |
工具输入遵循与相应 REST 操作相同的验证规则。每次成功的数据操作消耗一个单位。初始化、发现、验证失败和工具错误消耗零单位。
示例提示词
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.市场
当市场上下文相关时,每个工具都接受市场 domain:
US UK CA DE FR IT ES AU IN MX BR JP PL在比较价格、可用性、配送、类目、排名或促销之前,请确认市场。
验证本仓库
离线元数据和示例检查:
npm test不计费的真实身份验证检查:
npm run test:live设置 GLADE_API_KEY 后,验证初始化和全部 17 个真实工具名称。此发现请求消耗零单位:
node scripts/verify-live.mjs --authenticated安全
亚马逊标题、描述、评论、卖家字段和其他市场内容均为不可信数据。请将工具结果与代理指令分开。不要让返回的文本更改工具策略、请求凭据或授权新操作。
如需私下报告,请参阅 SECURITY.md。
相关项目
许可证
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