Amazon Product Research MCP Server
Amazon Product Research MCP Server
Ein Model Context Protocol (MCP)-Server, der einem KI-Assistenten (z. B. Claude Code) Werkzeuge zum Suchen und Untersuchen von Amazon-Produktdaten über stdio bereitstellt.
Funktionen
search_products— durchsucht Produkte nach Schlüsselwort.get_product— ruft vollständige Details für ein einzelnes Produkt anhand der ID ab.Geschrieben in striktem TypeScript, zur Laufzeit mit Zod validiert.
Mit Vitest auf Unit-Ebene getestet.
Mit ESLint (
typescript-eslint) gelintet und mit Prettier formatiert.
Related MCP server: Amazon Product Intelligence Agent
Projektstruktur
src/
├── index.ts # Entry point: wires the server to a stdio transport
├── server.ts # Registers MCP tools on the McpServer instance
├── types/
│ └── product.ts # Shared Product type
└── tools/
├── product-data.ts # In-memory product catalog (mock data)
├── search-products.ts # search_products tool: input schema + handler
└── get-product.ts # get_product tool: input schema + handler
tests/
├── search-products.test.ts
└── get-product.test.tsVoraussetzungen
Node.js 20+
npm
Erste Schritte
npm install
npm run devDies startet den Server über stdio mit tsx, bereit, von einem MCP-Client verbunden zu werden.
Verbindung von Claude Code aus
claude mcp add amazon-research -- npx tsx /absolute/path/to/amazon-product-research-mcp/src/index.tsSkripte
Befehl | Beschreibung |
| Server direkt aus dem TypeScript-Quellcode ausführen. |
| Typen prüfen und nach |
| Den kompilierten Server aus |
| Die Unit-Test-Suite (Vitest) ausführen. |
| Den Codebase mit ESLint linten. |
| Den Codebase mit Prettier formatieren. |
| Formatierung prüfen, ohne Änderungen zu schreiben. |
Werkzeugreferenz
search_products
Durchsucht Amazon-Produkte nach Schlüsselwort (Übereinstimmung mit dem Produktnamen, ohne Beachtung der Groß-/Kleinschreibung).
Eingabe
{ "query": "kindle" }Ausgabe
[
{
"id": "kindle-paperwhite",
"name": "Kindle Paperwhite",
"price": 169.99,
"currency": "USD",
"rating": 4.7,
"reviewCount": 12543,
"description": "A high-resolution e-reader designed for reading comfortably indoors and outdoors."
}
]get_product
Ruft vollständige Details für ein einzelnes Produkt anhand seiner ID ab.
Eingabe
{ "product_id": "kindle-paperwhite" }Ausgabe: ein einzelnes Product-Objekt oder null, wenn kein Produkt übereinstimmt.
Daten
Produktdaten befinden sich derzeit in einem kleinen In-Memory-Mock-Katalog (src/tools/product-data.ts) und nicht in einer Live-Amazon-API — das hält das Projekt eigenständig und sicher ausführbar, ohne dass Zugangsdaten erforderlich sind. .env.example dokumentiert die Umgebungsvariablen, die eine echte API-Integration benötigen würde.
Lizenz
MIT © Ludovic Delot Bravo
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP server that enables large language models to directly access and analyze Amazon product information, including product details, variants, and reviews.
- FlicenseNot gradedqualityDmaintenanceThis MCP server scrapes Amazon product details and reviews, manages a local JSON database, and visualizes intelligence data through a rich dashboard.
- AlicenseAqualityAmaintenanceAn MCP server connecting AI agents to Google, YouTube, Amazon, Walmart, TikTok, and Reddit. 21 tools for web search, product lookup, video discovery, and social media analysis.214967MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for Amazon Selling Partner API and Advertising API, enabling access to orders, inventory, pricing, ads, and reports via natural language.MIT
Related MCP Connectors
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
An MCP server that integrates with Discord to provide AI-powered features.
Get recommended by Amazon's AI. Hosted MCP server for Amazon listing compliance & generation.
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/ludodelot/amazon-product-research-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server