MCP Catalogs
Home

yamcp vs filesystem

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

yamcp
by hamidra
filesystem
by modelcontextprotocol
Stars★ 66★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsProductivityAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit12 mo agothis month

yamcp · Summary

YAMCP is a workspace manager that organizes and exposes multiple MCP servers through a unified gateway for AI applications.

filesystem · Summary

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

yamcp · Use cases

  • Organizing multiple MCP servers into themed workspaces for different AI applications
  • Simplifying configuration by exposing multiple servers through a single gateway
  • Centralizing monitoring and debugging of MCP server communications

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

yamcp · Install

# Install YAMCP globally
npm install -g yamcp

# Or use npx without installation
npx yamcp

Configuration for Claude Desktop

Add to Claude Desktop config.json:

{
  "mcpServers": {
    "yamcp": {
      "command": "npx",
      "args": ["yamcp", "run", "your-workspace-name"]
    }
  }
}

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.