MCP Catalogs
Home

dreamgraph vs filesystem

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

dreamgraph
by mmethodz
filesystem
by modelcontextprotocol
Stars★ 82★ 85,748
30d uses
Score4677
Official
Categories
Knowledge GraphDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

dreamgraph · Summary

DreamGraph is a graph-first cognitive layer that builds a persistent knowledge graph to reason about code architecture.

filesystem · Summary

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

dreamgraph · Use cases

  • Repository architecture understanding across multi-repo systems
  • Cognitive reasoning for code changes and documentation generation
  • Persistent knowledge maintenance in AI-assisted development

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

dreamgraph · Install

Install from source

**Windows (PowerShell):**

git clone https://github.com/mmethodz/dreamgraph.git
cd dreamgraph
./scripts/install.ps1 -Force

**Linux / macOS (Bash):**

git clone https://github.com/mmethodz/dreamgraph.git
cd dreamgraph
bash scripts/install.sh --force

For Claude Desktop integration, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "dreamgraph": {
      "command": "dg",
      "args": ["mcp"]
    }
  }
}

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.