everything vs mcp-server-amazon
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-server-amazon by rigwild | |
|---|---|---|
| Stars | ★ 85,748 | ★ 29 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | E-commerceAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-amazon · Summary
Unofficial Amazon MCP server enabling product search and purchase directly through Claude AI.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-server-amazon · Use cases
- Shopping on Amazon through natural language conversation with Claude
- Comparing products using AI recommendations before making a purchase
- Automating routine shopping tasks through AI assistants
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingmcp-server-amazon · Install
Installation
- Install dependencies:
npm install -D- Build the project:
npm run build- For Claude Desktop Integration, create or update
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"amazon": {
"command": "node",
"args": ["/path/to/mcp-server-amazon/build/index.js"]
}
}
}- Restart Claude Desktop to apply the changes.