github-mcp-server vs shippie
Side-by-side comparison to help you pick between these two MCP servers.
github-mcp-server by github | shippie by mattzcarey | |
|---|---|---|
| Stars | ★ 29,881 | ★ 2,356 |
| 30d uses | — | — |
| Score | 64 | 54 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsGitHub |
| Language | Go | TypeScript |
| Last commit | this month | 6 mo ago |
github-mcp-server · Summary
GitHub's official MCP Server connects AI tools to GitHub's platform for repository management, issue automation, and code analysis.
shippie · Summary
Shippie is an MCP client for code review that integrates AI models into CI/CD pipelines.
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
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
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.
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"]
}
}
}