github-chat-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
github-chat-mcp by AsyncFuncAI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 86 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | GitHubDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 13 mo ago | this month |
github-chat-mcp · Summary
An MCP server for analyzing GitHub repositories using the GitHub Chat API.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
github-chat-mcp · Use cases
- Codebase analysis for understanding the architecture of large repositories
- Technical due diligence when evaluating open-source projects
- Documentation generation by asking questions about repository structure
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
github-chat-mcp · Install
Installation
- Install the package using pip:
pip install github-chat-mcpOr with uv:
uv install github-chat-mcp- Configure Claude Desktop by adding to
claude_desktop_config.json:
{
"mcpServers": {
"github-chat": {
"command": "uvx",
"args": ["github-chat-mcp"]
}
}
}- Set your GitHub Chat API key as required.
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything