octocode-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
octocode-mcp by bgauryy | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 832 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsGitHub | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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"]
}
}
}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