mcp-git-ingest vs github-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-git-ingest by adhikasp | github-mcp-server by github | |
|---|---|---|
| Stars | ★ 306 | ★ 29,881 |
| 30d uses | — | — |
| Score | 44 | 64 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsFile System | GitHubDeveloper ToolsProductivity |
| 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.
github-mcp-server · Summary
GitHub's official MCP Server connects AI tools to GitHub's platform for repository management, issue automation, and code analysis.
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
github-mcp-server · Use cases
- Browse and analyze code repositories from within AI assistants
- Automate creation and management of GitHub issues and pull requests
- Monitor and analyze CI/CD pipelines and GitHub Actions workflows
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"]
}
}
}github-mcp-server · Install
Installation Options
Remote Installation (Recommended)
Add to your MCP host configuration (e.g., VS Code 1.101+):
{
"servers": {
"github": {
"type": "http",
"url": "https://api.githubcopilot.com/mcp/"
}
}
}For Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"github": {
"command": "http",
"args": ["https://api.githubcopilot.com/mcp/"]
}
}
}Local Installation
Using Docker:
docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN=your_token ghcr.io/github/github-mcp-serverOr install from source after cloning the repository.