github-to-mcp vs github-brain
Side-by-side comparison to help you pick between these two MCP servers.
github-to-mcp by nirholas | github-brain by wham | |
|---|---|---|
| Stars | ★ 28 | ★ 75 |
| 30d uses | — | — |
| Score | 45 | 46 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsGitHub | GitHubDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 3 mo ago |
github-to-mcp · Summary
Converts GitHub repositories into MCP servers by extracting tools from OpenAPI, GraphQL & REST APIs.
github-brain · Summary
GitHub Brain MCP server summarizes GitHub discussions, issues, and PRs with local database for fast responses.
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
github-brain · Use cases
- Summarizing GitHub discussions and pull requests for team meetings
- Analyzing user contributions in a specific time period
- Creating efficient reports on GitHub activities without hitting API limits
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": {}
}
}
}github-brain · Install
npm i -g github-brainOr with npx:
npx github-brain@latestMCP Configuration
Claude Desktop
Add to Claude MCP configuration:
{
"mcpServers": {
"github-brain": {
"type": "stdio",
"command": "github-brain",
"args": ["mcp"],
"env": {
"ORGANIZATION": "your-org"
}
}
}