MCP Catalogs
Home

metamcp vs filesystem

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

metamcp
by metatool-ai
filesystem
by modelcontextprotocol
Stars★ 2,328★ 85,748
30d uses
Score5577
Official
Categories
Developer ToolsOps & InfraAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

metamcp · Summary

MetaMCP is a unified MCP proxy that aggregates multiple MCP servers into one with middleware support.

filesystem · Summary

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

metamcp · Use cases

  • Grouping multiple MCP servers into a single namespace with a public endpoint
  • Remixing MCP servers by selecting specific tools for specific use cases
  • Enhanced debugging and inspection of MCP server configurations

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

metamcp · Install

Installation

  1. **Docker Compose (Recommended)**:
git clone https://github.com/metatool-ai/metamcp.git
cd metamcp
cp example.env .env
docker compose up -d
  1. **Local Development**:
pnpm install
pnpm dev

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "metamcp": {
      "command": "docker",
      "args": ["run", "--rm", "metatool-ai/metamcp"]
    }
  }
}

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.