MCP Catalogs
Home

mcp-sse-proxy vs filesystem

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

mcp-sse-proxy
by getsimpletool
filesystem
by modelcontextprotocol
Stars★ 3★ 85,748
30d uses
Score3077
Official
Categories
AI / LLM ToolsDeveloper ToolsCommunication
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit13 mo agothis month

mcp-sse-proxy · Summary

A Python proxy that bridges MCP STDIO communication with SSE protocol for web-based ClaudeAI clients.

filesystem · Summary

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

mcp-sse-proxy · Use cases

  • Enabling ClaudeAI Desktop to connect to MCP servers via web interfaces
  • Bridging local MCP tools with web-based AI applications
  • Converting legacy STDIO-based MCP servers to modern web-compatible protocols

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

mcp-sse-proxy · Install

pip3 install mcp-sse-proxy

# Or from source:
git clone <repository>
cd mcp-sse-proxy
pip3 install -r requirements.txt

Claude Desktop Configuration:

{
  "mcpServers": {
    "mcp-sse-proxy": {
      "command": "python",
      "args": [
        "/path/to/mcp_sse_proxy.py",
        "--sse-url",
        "http://your-server:8000"
      ],
      "env": {
        "OPENAI_API_KEY": "your-key-here"
      }
    }
  }
}

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.