MCP Catalogs
Home

everything vs mcp-go-sdk

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
mcp-go-sdk
by SetiabudiResearch
Stars★ 85,748★ 7
30d uses
Score7732
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptGo
Last committhis month15 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-go-sdk · Summary

Go SDK for implementing MCP servers with tool execution, resource access, and prompt handling.

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

mcp-go-sdk · Use cases

  • Building MCP servers in Go for CLI applications
  • Creating file system access tools through MCP
  • Developing web-based AI applications with WebSocket transport

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

mcp-go-sdk · Install

go get github.com/SetiabudiResearch/mcp-go-sdk

For Claude Desktop integration:

{
  "mcpServers": {
    "mcp-go-example": {
      "command": "go",
      "args": ["run", "/path/to/your/server.go"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.