MCP Catalogs
Home

mcp-mermaid vs filesystem

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

mcp-mermaid
by hustcc
filesystem
by modelcontextprotocol
Stars★ 555★ 85,748
30d uses
Score5177
Official
Categories
ProductivityDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-mermaid · Summary

An MCP server that generates Mermaid diagrams and charts with AI dynamically.

filesystem · Summary

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

mcp-mermaid · Use cases

  • Generate documentation diagrams for technical articles and wikis
  • Create process flowcharts for business documentation and presentations
  • Produce architectural diagrams for software development documentation

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-mermaid · Install

Installation

Desktop App Configuration

Add the following MCP server configuration to your Desktop App (Claude, VSCode, Cline, Cherry Studio, etc.):

{
  "mcpServers": {
    "mcp-mermaid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-mermaid"
      ]
    }
  }
}

Global Installation

npm install -g mcp-mermaid

Docker Usage

docker pull susuperli/mcp-mermaid:latest
docker run -p 3033:3033 susuperli/mcp-mermaid:latest --transport sse

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.