MCP Catalogs
Home

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
Score7741
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM Tools
LanguageTypeScriptGo
Last committhis month2 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-everything

godoc-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@latest

Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "godoc": {
      "command": "godoc-mcp-server",
      "args": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.