everything vs godoc-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | godoc-mcp by mrjoshuak | |
|---|---|---|
| Stars | ★ 85,748 | ★ 117 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsFile System |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
godoc-mcp · Summary
MCP server that provides efficient access to Go documentation to reduce token usage when AI coding agents work with Go projects.
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
godoc-mcp · Use cases
- Exploring Go projects by discovering packages and their purposes
- Understanding Go interfaces and API documentation for implementation guidance
- Efficiently analyzing Go codebases without loading entire source files into context
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-everythinggodoc-mcp · Install
Installation
Go Install
go install github.com/mrjoshuak/godoc-mcp@latestDocker
docker pull ghcr.io/mrjoshuak/godoc-mcp:latestClaude Desktop
Add to your MCP configuration:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp"
}
}
}For local projects, set environment variables:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp",
"env": {
"GOPATH": "/path/to/go",
"GOMODCACHE": "/path/to/go/pkg/mod"
}
}
}
}