everything vs godoc-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | godoc-mcp-server by yikakia | |
|---|---|---|
| Stars | ★ 85,748 | ★ 35 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM Tools |
| 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-server · Summary
An MCP server that provides information about Go packages from pkg.go.dev.
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-server · Use cases
- Helping Go developers find and understand package documentation within AI assistants
- Enabling LLMs to provide accurate information about Go package APIs and usage
- Automating package research tasks for Go projects
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-server · Install
Installation
Download the compiled binary from the [releases page](https://github.com/yikakia/godoc-mcp-server/releases/tag/latest).
Or install from source:
go install github.com/yikakia/godoc-mcp-server/cmd/godoc-mcp-server@latestConfiguration
Add to Claude Desktop config:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp-server",
"args": []
}
}
}