mcp-git-ingest vs gh-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-git-ingest by adhikasp | gh-mcp by shuymn | |
|---|---|---|
| Stars | ★ 306 | ★ 29 |
| 30d uses | — | — |
| Score | 44 | 44 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsFile System | Developer ToolsGitHubAI / LLM Tools |
| Language | Python | Go |
| Last commit | 16 mo ago | this month |
mcp-git-ingest · Summary
A Model Context Protocol server that reads GitHub repository structures and important files.
gh-mcp · Summary
GitHub CLI extension that runs github-mcp-server using existing gh authentication without manual PAT setup.
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
gh-mcp · Use cases
- Integrating GitHub access with AI coding assistants that support MCP
- Accessing GitHub repositories and issues without managing separate PATs
- Enabling Claude Code or other MCP clients to interact with GitHub resources
mcp-git-ingest · Install
Installation
- Install with uvx:
uvx --from git+https://github.com/adhikasp/mcp-git-ingest mcp-git-ingest- Configure in Claude Desktop:
{
"mcpServers": {
"mcp-git-ingest": {
"command": "uvx",
"args": ["--from", "git+https://github.com/adhikasp/mcp-git-ingest", "mcp-git-ingest"]
}
}
}gh-mcp · Install
Installation
gh extension install shuymn/gh-mcpConfiguration for Claude Desktop
Add this to your Claude Desktop configuration:
{
"github": {
"command": "gh",
"args": ["mcp"]
}
}With environment variables:
{
"github": {
"command": "gh",
"args": ["mcp"],
"env": {
"GITHUB_TOOLSETS": "repos,issues,pull_requests",
"GITHUB_READ_ONLY": "1"
}
}
}