MCP Catalogs
Home

one-mcp vs filesystem

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

one-mcp
by burugo
filesystem
by modelcontextprotocol
Stars★ 390★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsOps & InfraOther
File SystemDeveloper ToolsProductivity
LanguageGoTypeScript
Last committhis monththis month

one-mcp · Summary

One MCP is a centralized proxy platform for managing multiple MCP services with a web interface, analytics, and service grouping capabilities.

filesystem · Summary

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

one-mcp · Use cases

  • Managing multiple MCP services in a centralized dashboard instead of configuring each one individually
  • Creating custom Claude Skills by grouping multiple MCP services into a single endpoint
  • Monitoring usage analytics and performance metrics of MCP services across an organization

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

one-mcp · Install

Homebrew Installation (macOS & Linux)

# Add tap
brew tap burugo/tap

# Install one-mcp
brew install one-mcp

# Start as background service
brew services start one-mcp

Docker Installation

docker run --name one-mcp -d \
  --restart always \
  -p 3000:3000 \
  -v $(pwd)/data:/data \
  buru2020/one-mcp:latest

Manual Installation

git clone https://github.com/burugo/one-mcp.git
cd one-mcp
cp .env_example .env
bash ./run.sh

**Default Login**: Username root, Password 123456

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.