gh-mcp vs github-brain
Side-by-side comparison to help you pick between these two MCP servers.
gh-mcp by shuymn | github-brain by wham | |
|---|---|---|
| Stars | ★ 29 | ★ 75 |
| 30d uses | — | — |
| Score | 44 | 46 |
| Official | — | — |
| Categories | Developer ToolsGitHubAI / LLM Tools | GitHubDeveloper ToolsAI / LLM Tools |
| Language | Go | Go |
| Last commit | this month | 3 mo ago |
gh-mcp · Summary
GitHub CLI extension that runs github-mcp-server using existing gh authentication without manual PAT setup.
github-brain · Summary
GitHub Brain MCP server summarizes GitHub discussions, issues, and PRs with local database for fast responses.
gh-mcp · Use cases
- Integrating GitHub access with AI coding assistants that support MCP
- Accessing GitHub repositories and issues without managing separate PATs
- Enabling Claude Code or other MCP clients to interact with GitHub resources
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
gh-mcp · Install
Installation
gh extension install shuymn/gh-mcpConfiguration for Claude Desktop
Add this to your Claude Desktop configuration:
{
"github": {
"command": "gh",
"args": ["mcp"]
}
}With environment variables:
{
"github": {
"command": "gh",
"args": ["mcp"],
"env": {
"GITHUB_TOOLSETS": "repos,issues,pull_requests",
"GITHUB_READ_ONLY": "1"
}
}
}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"
}
}
}