MCP Catalogs
Home

github-chat-mcp vs filesystem

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

github-chat-mcp
by AsyncFuncAI
filesystem
by modelcontextprotocol
Stars★ 86★ 85,748
30d uses
Score4177
Official
Categories
GitHubDeveloper ToolsAI / LLM Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit13 mo agothis month

github-chat-mcp · Summary

An MCP server for analyzing GitHub repositories using the GitHub Chat API.

filesystem · Summary

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

github-chat-mcp · Use cases

  • Codebase analysis for understanding the architecture of large repositories
  • Technical due diligence when evaluating open-source projects
  • Documentation generation by asking questions about repository structure

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

github-chat-mcp · Install

Installation

  1. Install the package using pip:
pip install github-chat-mcp

Or with uv:

uv install github-chat-mcp
  1. Configure Claude Desktop by adding to claude_desktop_config.json:
{
  "mcpServers": {
    "github-chat": {
      "command": "uvx",
      "args": ["github-chat-mcp"]
    }
  }
}
  1. Set your GitHub Chat API key as required.

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.