Amazon Creators MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DEBUG | No | Noisy stderr logging. Off by default. | |
| AMAZON_CLIENT_ID | Yes | "Credential Id" from your Creators API app | |
| AMAZON_MARKETPLACE | Yes | The full marketplace host, e.g. www.amazon.com | |
| AMAZON_PARTNER_TAG | Yes | Your Associates tracking ID | |
| AMAZON_CLIENT_SECRET | Yes | "Secret" from the same place | |
| AMAZON_MAX_CONCURRENCY | No | Max requests in flight at once. Default 4. | 4 |
| AMAZON_CREDENTIAL_VERSION | Yes | Region-specific version: NA = 3.1, EU = 3.2, FE = 3.3 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_itemsA | Search Amazon's catalog by keywords (plus optional title/actor/author/brand/browse-node filters). Returns up to 10 items per page; paginate via PRESENTATION GUIDANCE (important): default to |
| get_itemsA | Look up 1–10 ASINs on Amazon. IMPORTANT: the returned PRESENTATION GUIDANCE (important): default to |
| get_variationsA | List colour/size/style variations of a parent ASIN. Max 10 variations per call; paginate via PRESENTATION GUIDANCE (important): default to |
| get_browse_nodesA | Returns browse-node metadata (category tree) for up to 10 IDs — ancestor chain and direct children for each node. Use the |
| format_itemsA | Re-render Amazon items you already have (from a previous |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Amazon Creators preview | Sandboxed renderer for Amazon Creators tool output — displays the HTML card/grid (or falls back to the raw markdown/JSON) inside a nested iframe. |
TDQS
Scored across 5 tools
Each tool targets a distinct operation: fetching variations, searching by keywords, fetching by ASIN, retrieving browse node metadata, and formatting items. The descriptions clearly separate these concerns, with no overlapping purposes.
All tool names follow a consistent verb_noun pattern: get_variations, search_items, get_items, get_browse_nodes, format_items. This makes the tool set predictable and easy to navigate.
Five tools is well-scoped for an Amazon product data server. Each tool serves a distinct, necessary role without redundancy or bloat.
The tool surface covers the core workflows for Amazon product lookup: searching, retrieving by identifier, viewing variations, exploring category structure, and formatting results. No critical gaps are apparent for a read-only product retrieval server.