MCP Catalogs
Home

filesystem vs Claude-Code-MCP-Manager

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

filesystem
by modelcontextprotocol
Claude-Code-MCP-Manager
by qdhenry
Stars★ 85,748★ 24
30d uses
Score7740
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsProductivityOther
LanguageTypeScriptShell
Last committhis month11 mo ago

filesystem · Summary

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

Claude-Code-MCP-Manager · Summary

A bash script tool for managing MCP configurations for Claude Code with add, remove, and auto-loading capabilities.

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

Claude-Code-MCP-Manager · Use cases

  • Managing multiple MCP servers for Claude Code projects
  • Automating MCP configuration setup for development teams
  • Creating portable MCP configurations across different environments

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.

Claude-Code-MCP-Manager · Install

Installation

  1. Download the script:
curl -O https://raw.githubusercontent.com/qdhenry/Claude-Code-MCP-Manager/main/mcp-manager.sh
  1. Make it executable:
chmod +x mcp-manager.sh
  1. Move to a location in your PATH (optional):
sudo mv mcp-manager.sh /usr/local/bin/mcp-manager

For Claude Desktop configuration, ensure the MCP servers are properly configured in your claude_desktop_config.json:

{
  "mcpServers": {
    "supabase": {
      "command": "npx",
      "args": ["supabase/mcp-server-supabase@latest", "--access-token", "YOUR_TOKEN_HERE"]
    },
    "digitalocean": {
      "command": "npx",
      "args": ["-y", "@digitalocean/mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.