shippie vs github-to-mcp
Side-by-side comparison to help you pick between these two MCP servers.
shippie by mattzcarey | github-to-mcp by nirholas | |
|---|---|---|
| Stars | ★ 2,356 | ★ 28 |
| 30d uses | — | — |
| Score | 54 | 45 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsGitHub | Developer ToolsAI / LLM ToolsGitHub |
| Language | TypeScript | TypeScript |
| Last commit | 6 mo ago | this month |
shippie · Summary
Shippie is an MCP client for code review that integrates AI models into CI/CD pipelines.
github-to-mcp · Summary
Converts GitHub repositories into MCP servers by extracting tools from OpenAPI, GraphQL & REST APIs.
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-to-mcp · Use cases
- Enable AI assistants to explore and interact with codebases programmatically
- Automatically generate MCP servers from existing API documentation
- Integrate AI assistants with proprietary or internal code repositories
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"]
}
}
}github-to-mcp · Install
Web UI (Easiest)
Visit [github-to-mcp.vercel.app](https://github-to-mcp.vercel.app) — Paste any GitHub URL, click Generate, download your MCP server.
CLI (One Command)
npx @nirholas/github-to-mcp https://github.com/stripe/stripe-nodeClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"github-repo": {
"command": "npx",
"args": ["@nirholas/github-to-mcp", "https://github.com/your/repo"],
"env": {}
}
}
}