mcp-git-ingest vs github-to-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-git-ingest by adhikasp | github-to-mcp by nirholas | |
|---|---|---|
| Stars | ★ 306 | ★ 28 |
| 30d uses | — | — |
| Score | 44 | 45 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsFile System | Developer ToolsAI / LLM ToolsGitHub |
| Language | Python | TypeScript |
| 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-to-mcp · Summary
Converts GitHub repositories into MCP servers by extracting tools from OpenAPI, GraphQL & REST APIs.
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-to-mcp · Use cases
- Enable AI assistants to explore and interact with codebases programmatically
- Automatically generate MCP servers from existing API documentation
- Integrate AI assistants with proprietary or internal code repositories
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-to-mcp · Install
Web UI (Easiest)
Visit [github-to-mcp.vercel.app](https://github-to-mcp.vercel.app) — Paste any GitHub URL, click Generate, download your MCP server.
CLI (One Command)
npx @nirholas/github-to-mcp https://github.com/stripe/stripe-nodeClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"github-repo": {
"command": "npx",
"args": ["@nirholas/github-to-mcp", "https://github.com/your/repo"],
"env": {}
}
}
}