MCP Catalogs
Home

leetcode-mcp-server vs everything

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

leetcode-mcp-server
by jinzcdev
everything
by modelcontextprotocol
Stars★ 113★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsAI / LLM Toolseducation
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

leetcode-mcp-server · Summary

MCP server providing automated access to LeetCode problems, solutions, and user data with optional authentication.

everything · Summary

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

leetcode-mcp-server · Use cases

  • AI-assisted programming problem solving with instant access to problem details and solutions
  • Automated tracking of personal coding progress and submission analysis
  • Integration with AI tutors to provide personalized programming education based on LeetCode content

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

leetcode-mcp-server · Install

Installation

Via Smithery (Recommended for Claude Desktop)

npx -y @smithery/cli install @jinzcdev/leetcode-mcp-server --client claude

Manual Installation

npm install @jinzcdev/leetcode-mcp-server -g

Claude Desktop Configuration

Add to your settings.json:

{
  "mcp": {
    "servers": {
      "leetcode": {
        "type": "stdio",
        "command": "npx",
        "args": ["-y", "@jinzcdev/leetcode-mcp-server"],
        "env": {
          "LEETCODE_SITE": "global",
          "LEETCODE_SESSION": "<YOUR_LEETCODE_SESSION_COOKIE>"
        }
      }
    }
  }
}

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.