MCP Catalogs
Home

everything vs polymarket-mcp

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

everything
by modelcontextprotocol
polymarket-mcp
by pab1it0
Stars★ 85,748★ 6
30d uses
Score7740
Official
Categories
Developer ToolsAI / LLM ToolsOther
FinanceAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis month2 mo ago

everything · Summary

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

polymarket-mcp · Summary

MCP server providing access to Polymarket's prediction markets data through standardized interfaces.

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

polymarket-mcp · Use cases

  • AI assistants providing market analysis and insights on prediction markets
  • Automated trading systems that react to Polymarket data changes
  • Research tools that aggregate and analyze prediction market trends

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

polymarket-mcp · Install

Docker Installation

  1. Build the Docker image:
docker build -t polymarket-mcp-server .
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "polymarket": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "-e", "GAMMA_API_URL",
        "-e", "GAMMA_REQUIRES_AUTH",
        "polymarket-mcp-server"
      ],
      "env": {
        "GAMMA_API_URL": "https://gamma-api.polymarket.com",
        "GAMMA_REQUIRES_AUTH": "false"
      }
    }
  }
}

UV Installation (Alternative)

  1. Set up environment:
cp .env.template .env
# Edit .env with your configuration
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "polymarket": {
      "command": "/usr/local/bin/uv",
      "args": [
        "run",
        "-m", "polymarket_mcp_server.main"
      ],
      "cwd": "<full path to polymarket-mcp directory>",
      "env": {
        "GAMMA_API_URL": "https://gamma-api.polymarket.com",
        "GAMMA_REQUIRES_AUTH": "false"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.