mcp-git-ingest vs gitlab-mr-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-git-ingest by adhikasp | gitlab-mr-mcp by kopfrechner | |
|---|---|---|
| Stars | ★ 306 | ★ 89 |
| 30d uses | — | — |
| Score | 44 | 47 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsFile System | Developer ToolsGitHubProductivity |
| Language | Python | JavaScript |
| Last commit | 16 mo ago | this month |
mcp-git-ingest · Summary
A Model Context Protocol server that reads GitHub repository structures and important files.
gitlab-mr-mcp · Summary
GitLab MR MCP server allows AI agents to interact with GitLab repositories to manage merge requests and issues.
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
gitlab-mr-mcp · Use cases
- AI-powered code review automation where an AI agent analyzes merge requests and provides automated feedback
- Project management assistance through AI that helps track and manage issues across multiple GitLab projects
- Development workflow integration where AI tools can directly interact with GitLab to streamline development processes
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"]
}
}
}gitlab-mr-mcp · Install
Installation
Using Smithery (Recommended)
npx -y @smithery/cli@latest install @kopfrechner/gitlab-mr-mcp --client claude --config '{"gitlabMrMcpToken":"YOUR_GITLAB_TOKEN", "gitlabMrMcpHost": "YOUR_GITLAB_HOST"}'Manual Installation
- Clone the repository:
git clone https://github.com/kopfrechner/gitlab-mr-mcp.git - Install dependencies:
npm install - Configure your MCP client (e.g., Claude Desktop) with:
{
"mcpServers": {
"gitlab-mr-mcp": {
"command": "node",
"args": ["/path/to/gitlab-mr-mcp/index.js"],
"env": {
"MR_MCP_GITLAB_TOKEN": "your_gitlab_token",
"MR_MCP_GITLAB_HOST": "your_gitlab_host"
}
}
}
}