mcp-git-ingest vs mcp-github-project-manager
Side-by-side comparison to help you pick between these two MCP servers.
mcp-git-ingest by adhikasp | mcp-github-project-manager by kunwarVivek | |
|---|---|---|
| Stars | ★ 306 | ★ 88 |
| 30d uses | — | — |
| Score | 44 | 46 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsFile System | GitHubDeveloper ToolsAI / LLM Tools |
| Language | Python | TypeScript |
| Last commit | 16 mo ago | 4 mo ago |
mcp-git-ingest · Summary
A Model Context Protocol server that reads GitHub repository structures and important files.
mcp-github-project-manager · Summary
An MCP server for GitHub project management with AI-powered task generation and requirements traceability.
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
mcp-github-project-manager · Use cases
- AI-assisted project planning with automatic PRD generation from project ideas
- Automated task breakdown with complexity analysis and effort estimation
- Requirements traceability management with bidirectional links and impact analysis
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"]
}
}
}mcp-github-project-manager · Install
Installation
Option 1: Install from npm (recommended)
npm install -g mcp-github-project-managerOption 2: Install from source
git clone https://github.com/kunwarVivek/mcp-github-project-manager.git
cd mcp-github-project-mannpm install
npm run buildSet up environment variables
cp .env.example .env
# Edit .env with your GitHub token and detailsClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"github-project-manager": {
"command": "mcp-github-project-manager",
"args": []
}
}
}