MCP Catalogs
Home

everything vs ebay-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
ebay-mcp
by YosefHayim
Stars★ 85,748★ 63
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
E-commerceDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

Official MCP test server exercising all protocol features for client builders.

ebay-mcp · Summary

eBay MCP Server provides AI assistants with access to 325 eBay API tools for inventory, orders, marketing, and analytics.

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

ebay-mcp · Use cases

  • AI assistants managing eBay inventory listings and stock levels
  • Automated order processing and fulfillment workflows
  • Marketing campaign creation and performance analytics

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

ebay-mcp · Install

Install eBay MCP Server

**1. Get eBay Credentials**

  • Create a free [eBay Developer Account](https://developer.ebay.com/)
  • Generate application keys in the [Developer Portal](https://developer.ebay.com/my/keys)

**2. Install**

npm install -g ebay-mcp

**3. Setup Configuration**

npm run setup

**4. Configure Claude Desktop** Add to claude_desktop_config.json:

{
  "mcpServers": {
    "ebay": {
      "command": "ebay-mcp",
      "args": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.