MCP Catalogs
Home

MCPStack vs filesystem

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

MCPStack
by MCP-Pipeline
filesystem
by modelcontextprotocol
Stars★ 16★ 85,748
30d uses
Score3977
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit8 mo agothis month

MCPStack · Summary

MCPStack is a scikit-learn-like pipeline orchestrator for MCP tools, enabling secure composition and chaining of MCP tools in LLM environments.

filesystem · Summary

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

MCPStack · Use cases

  • Creating secure MCP pipelines for Claude Desktop with restricted tool access
  • Orchestrating complex workflows by chaining multiple MCP tools together
  • Building reproducible experiments with pre-configured tool presets

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

MCPStack · Install

Installation

Using UV (recommended):

uv add mcpstack

Using pip:

pip install mcpstack

Pre-commit Hooks

Via UV:

uv run pre-commit install

Via pip:

pre-commit install

Claude Desktop Configuration

To use MCPStack with Claude Desktop, add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "mcpstack": {
      "command": "uv",
      "args": ["run", "mcpstack", "run"]
    }
  }
}

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.