MCP Catalogs
Home

leetcode-mcp-server vs filesystem

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

leetcode-mcp-server
by jinzcdev
filesystem
by modelcontextprotocol
Stars★ 113★ 85,748
30d uses
Score4777
Official
Categories
Developer ToolsAI / LLM Toolseducation
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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>"
        }
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.