Skip to main content
Glama
ricciflow-api

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-KEYGLADE-API-KEYX-API-KEYAuthorization: Bearer 用于 MCP,并拒绝冲突的凭据。

使用 Python MCP SDK 连接

安装官方 MCP Python SDK,然后运行随附的发现示例:

python3 -m pip install "mcp"
python3 examples/python/list_tools.py

该示例初始化一个 Streamable HTTP 会话并打印可用的工具名称。工具发现和初始化不消耗 Glade 单位。

可用工具

Tool

Purpose

get_amazon_product

按 ASIN、GTIN 或规范 URL 获取产品详情

get_amazon_gtin_from_asin

从 ASIN 解析 GTIN

get_amazon_asin_from_gtin

从 GTIN 解析并验证 ASIN

get_amazon_product_variants

产品变体

get_amazon_product_stock

库存估算

get_amazon_product_sales

销售估算

get_amazon_product_reviews

可筛选的评论

get_amazon_product_offers

卖家报价

search_amazon_products

市场产品搜索

get_amazon_autocomplete

市场搜索建议

get_amazon_categories

产品类目分类体系

get_amazon_category

类目详情和产品

get_amazon_seller

卖家资料和产品

get_amazon_author

作者资料和图书

get_amazon_deals

当前市场促销

get_amazon_bestsellers

排名畅销榜

get_amazon_bestseller_categories

畅销类目导航

工具输入遵循与相应 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

相关项目

许可证

MIT

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    Not graded
    quality
    D
    maintenance
    This 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/mcp
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables 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

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

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