MCP Catalogs
Home

chunkhound vs filesystem

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

chunkhound
by chunkhound
filesystem
by modelcontextprotocol
Stars★ 1,258★ 85,748
30d uses
Score5577
Official
Categories
Developer ToolsAI / LLM ToolsSearch
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last committhis monththis month

chunkhound · Summary

Local-first codebase intelligence tool with MCP integration for semantic code searching across 32+ languages.

filesystem · Summary

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

chunkhound · Use cases

  • Searching large monorepos with cross-team dependencies
  • Security-sensitive codebases requiring local-only processing
  • Multi-language projects needing consistent search capabilities

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

chunkhound · Install

  1. Install uv package manager if needed: curl -LsSf https://astral.sh/uv/install.sh | sh
  2. Install ChunkHound: uv tool install chunkhound
  3. Create .chunkhound.json in project root with your API keys (optional for regex search)
  4. Index your codebase: chunkhound index

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

{
  "mcpServers": {
    "chunkhound": {
      "command": "chunkhound",
      "args": ["serve"]
    }
  }
}

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.