github-mcp-server vs gitlab-mr-mcp
Side-by-side comparison to help you pick between these two MCP servers.
github-mcp-server by github | gitlab-mr-mcp by kopfrechner | |
|---|---|---|
| Stars | ★ 29,881 | ★ 89 |
| 30d uses | — | — |
| Score | 64 | 47 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsProductivity | Developer ToolsGitHubProductivity |
| Language | Go | JavaScript |
| Last commit | this month | this month |
github-mcp-server · Summary
GitHub's official MCP Server connects AI tools to GitHub's platform for repository management, issue automation, and code analysis.
gitlab-mr-mcp · Summary
GitLab MR MCP server allows AI agents to interact with GitLab repositories to manage merge requests and issues.
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
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
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.
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"
}
}
}
}