MCP Catalogs
Home

codebase-memory-mcp vs filesystem

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

codebase-memory-mcp
by DeusData
filesystem
by modelcontextprotocol
Stars★ 2,363★ 85,748
30d uses
Score5877
Official
Categories
Developer ToolsKnowledge GraphAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguageCTypeScript
Last committhis monththis month

codebase-memory-mcp · Summary

High-performance code intelligence MCP server that indexes codebases into a persistent knowledge graph with sub-ms queries and 155 language support.

filesystem · Summary

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

codebase-memory-mcp · Use cases

  • Large codebase architecture analysis and documentation
  • Code impact assessment before refactoring
  • Cross-service dependency mapping in microservices
  • Dead code detection and optimization
  • Semantic code search across entire repositories

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

codebase-memory-mcp · Install

Quick Start

**One-line install** (macOS / Linux):

curl -fsSL https://raw.githubusercontent.com/DeusData/codebase-memory-mcp/main/install.sh | bash

**Windows** (PowerShell):

# 1. Download the installer
Invoke-WebRequest -Uri https://raw.githubusercontent.com/DeusData/codebase-memory-mcp/main/install.ps1 -OutFile install.ps1

# 2. (Optional but recommended) Inspect the script
notepad install.ps1

# 3. Run it
.\install.ps1
Claude Desktop Configuration
  1. Add to Claude Desktop config:
{
  "mcpServers": {
    "codebase-memory": {
      "command": "codebase-memory-mcp",
      "args": []
    }
  }
}
  1. Restart Claude Desktop
  2. Say "Index this project" to begin

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.