gitlab-mr-mcp vs shippie
Side-by-side comparison to help you pick between these two MCP servers.
gitlab-mr-mcp by kopfrechner | shippie by mattzcarey | |
|---|---|---|
| Stars | ★ 89 | ★ 2,356 |
| 30d uses | — | — |
| Score | 47 | 54 |
| Official | — | — |
| Categories | Developer ToolsGitHubProductivity | Developer ToolsAI / LLM ToolsGitHub |
| Language | JavaScript | TypeScript |
| Last commit | this month | 6 mo ago |
gitlab-mr-mcp · Summary
GitLab MR MCP server allows AI agents to interact with GitLab repositories to manage merge requests and issues.
shippie · Summary
Shippie is an MCP client for code review that integrates AI models into CI/CD pipelines.
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
shippie · Use cases
- Automated code review in CI/CD pipelines to catch security issues and bugs early
- Local code review of staged changes before committing
- Integration with external tools via MCP for enhanced code analysis capabilities
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"
}
}
}
}shippie · Install
Installation
- Install Shippie via npm:
npx shippie review- To use with Claude Desktop, configure MCP in your config.json:
{
"mcpServers": {
"shippie": {
"command": "npx",
"args": ["shippie", "mcp"]
}
}
}