MCP Catalogs
Home

mcp-git-ingest vs filesystem

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

mcp-git-ingest
by adhikasp
filesystem
by modelcontextprotocol
Stars★ 306★ 85,748
30d uses
Score4477
Official
Categories
GitHubDeveloper ToolsFile System
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit16 mo agothis month

mcp-git-ingest · Summary

A Model Context Protocol server that reads GitHub repository structures and important files.

filesystem · Summary

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

mcp-git-ingest · Use cases

  • Analyzing GitHub repositories without cloning them locally
  • Understanding codebase structure before diving into implementation details
  • Extracting specific files from repositories for documentation or analysis purposes

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-git-ingest · Install

Installation

  1. Install with uvx:
uvx --from git+https://github.com/adhikasp/mcp-git-ingest mcp-git-ingest
  1. Configure in Claude Desktop:
{
  "mcpServers": {
    "mcp-git-ingest": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/adhikasp/mcp-git-ingest", "mcp-git-ingest"]
    }
  }
}

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.