octocode-mcp vs github-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
octocode-mcp by bgauryy | github-mcp-server by github | |
|---|---|---|
| Stars | ★ 832 | ★ 29,881 |
| 30d uses | — | — |
| Score | 52 | 64 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsGitHub | GitHubDeveloper ToolsProductivity |
| Language | TypeScript | Go |
| Last commit | this month | this month |
octocode-mcp · Summary
MCP server for semantic code research across GitHub/GitLab and local repositories with advanced LSP integration.
github-mcp-server · Summary
GitHub's official MCP Server connects AI tools to GitHub's platform for repository management, issue automation, and code analysis.
octocode-mcp · Use cases
- Code exploration and pattern matching across public and private repositories
- Advanced code analysis and documentation generation using AST and dependency graphs
- Pull request review with LSP flow tracing across multiple domains
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
octocode-mcp · Install
Installation
Recommended: Octocode CLI
npx octocode-cli installManual MCP Configuration
Add to your MCP configuration file:
{
"mcpServers": {
"octocode": {
"command": "npx",
"args": ["octocode-mcp@latest"]
}
}
}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.