MCP Catalogs
Home

polymarket-mcp vs everything

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

polymarket-mcp
by aryankeluskar
everything
by modelcontextprotocol
Stars★ 6★ 85,748
30d uses
Score3777
Official
Categories
FinanceAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit6 mo agothis month

polymarket-mcp · Summary

A comprehensive MCP server for accessing Polymarket's prediction markets through Claude AI with market discovery, analysis tools, and real-time data.

everything · Summary

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

polymarket-mcp · Use cases

  • Build market analysis tools to identify prediction market trends and probabilities
  • Create trading assistants to monitor high-volume markets and trading patterns
  • Develop educational platforms to explain prediction markets using real data examples

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 · Install

Installation

  1. Clone this repository:
git clone https://github.com/aryankeluskar/polymarket-mcp.git
cd polymarket-mcp
  1. Install dependencies:
npm install
  1. Build the server:
npm run build
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "polymarket": {
      "command": "node",
      "args": [".smithery/index.js"],
      "env": {
        "SMITHERY_API_KEY": "your_api_key_here"
      }
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.