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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Toolseducation | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this 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 claudeManual Installation
npm install @jinzcdev/leetcode-mcp-server -gClaude 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