github-mcp-server vs mcp-github-project-manager
Side-by-side comparison to help you pick between these two MCP servers.
github-mcp-server by github | mcp-github-project-manager by kunwarVivek | |
|---|---|---|
| Stars | ★ 29,881 | ★ 88 |
| 30d uses | — | — |
| Score | 64 | 46 |
| Official | — | — |
| Categories | GitHubDeveloper ToolsProductivity | GitHubDeveloper ToolsAI / LLM Tools |
| Language | Go | TypeScript |
| Last commit | this month | 4 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.
mcp-github-project-manager · Summary
An MCP server for GitHub project management with AI-powered task generation and requirements traceability.
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
mcp-github-project-manager · Use cases
- AI-assisted project planning with automatic PRD generation from project ideas
- Automated task breakdown with complexity analysis and effort estimation
- Requirements traceability management with bidirectional links and impact analysis
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.
mcp-github-project-manager · Install
Installation
Option 1: Install from npm (recommended)
npm install -g mcp-github-project-managerOption 2: Install from source
git clone https://github.com/kunwarVivek/mcp-github-project-manager.git
cd mcp-github-project-mannpm install
npm run buildSet up environment variables
cp .env.example .env
# Edit .env with your GitHub token and detailsClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"github-project-manager": {
"command": "mcp-github-project-manager",
"args": []
}
}
}