MCP Catalogs
Home

mcp-server vs filesystem

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

mcp-server
by DollhouseMCP
filesystem
by modelcontextprotocol
Stars★ 33★ 85,748
30d uses
Score4477
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-server · Summary

A free, open-source MCP server for dynamic custom persona management with community-shared templates and skills.

filesystem · Summary

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

mcp-server · Use cases

  • Customizing AI behavior with specific personas for different tasks
  • Adding new capabilities to AI models through community-developed skills
  • Standardizing output formats using reusable templates

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

mcp-server · Install

Interactive Setup (any platform)

npx @dollhousemcp/mcp-server@latest --web

Claude Desktop

Download the [DollhouseMCP Desktop Extension](https://github.com/DollhouseMCP/mcp-server/releases/latest) (.mcpb file) and double-click it.

Claude Code

claude mcp add -s user dollhousemcp -- npx -y @dollhousemcp/mcp-server

Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "dollhousemcp": {
      "command": "npx",
      "args": ["-y", "@dollhousemcp/mcp-server"]
    }
  }
}

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.