Prepare the server locally
Run this once before adding it to Claude Code.
npm install -D
npm run buildRegister it in Claude Code
claude mcp add amazon -- node /path/to/mcp-server-amazon/build/index.jsReplace any placeholder paths in the command with the real path on your machine.
Make your agent remember this setup
amazon's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.
npx conare@latestFree · one command · indexes the sessions already on disk. Set up in the browser instead →
What it does
- Search for products on Amazon
- Retrieve detailed information about specific products
- Add items to or clear your Amazon shopping cart
- Place orders for demonstration purposes
- Retrieve recent Amazon order history
Tools 5
search_productsSearch for products on Amazonget_product_detailsRetrieve detailed information about a specific product on Amazonmanage_cartAdd items or clear your Amazon cartplace_orderPlace orders (demonstration purposes)get_orders_historyRetrieve your recent Amazon orders detailsTry it
Original README from rigwild/mcp-server-amazon
Amazon MCP Server
This server allows you to interact with Amazon's services using the MCP (Model Context Protocol) framework. This lets you use your Amazon account through ChatGPT or Claude AI interfaces.
Features
- Product search: Search for products on Amazon
- Product details: Retrieve detailed information about a specific product on Amazon
- Cart management: Add items or clear your Amazon cart
- Ordering: Place orders (fake for demonstration purposes)
- Orders history: Retrieve your recent Amazon orders details
Demo
Simple demo, showcasing a quick product search and purchase.

Full Demo
Another more complex demo with products search, leveraging Claude AI recommendations to compare and make a decision, then purchase.
It showcases how natural and powerful the Amazon MCP integration could be inside a conversation
Video: https://www.youtube.com/watch?v=xas2CLkJDYg
Install
Install dependencies
npm install -D
Build the project
npm run build
Claude Desktop Integration
Create or update ~/Library/Application Support/Claude/claude_desktop_config.json with the path to the MCP server.
{
"mcpServers": {
"amazon": {
"command": "node",
"args": ["/Users/admin/dev/mcp-server-amazon/build/index.js"]
}
}
}
Restart the Claude Desktop app to apply the changes. You should now see the Amazon MCP server listed in the Claude Desktop app.
![]() |
![]() |
Troubleshooting
The MCP server logs its output to a file. If you encounter any issues, you can check the log file for more information.
See ~/Library/Logs/Claude/mcp-server-amazon.log

