MCP Catalogs
Home

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
Score7738
Official
Categories
Developer ToolsAI / LLM ToolsOther
E-commerceAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month10 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-everything

mcp-server-amazon · Install

Installation

  1. Install dependencies:
npm install -D
  1. Build the project:
npm run build
  1. 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"]
    }
  }
}
  1. Restart Claude Desktop to apply the changes.
Comparison generated from public README + GitHub signals. Last updated automatically.