MCP Catalogs
Home

go-mcp-server vs everything

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

go-mcp-server
by cbrgm
everything
by modelcontextprotocol
Stars★ 6★ 85,748
30d uses
Score3777
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last committhis monththis month

go-mcp-server · Summary

A learning MCP server in Go that implements tea-related tools, resources, and prompts with stdio and HTTP transport options.

everything · Summary

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

go-mcp-server · Use cases

  • Educational tool for learning MCP implementation
  • Tea information retrieval system
  • Demo server for MCP protocol testing

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

go-mcp-server · Install

Installation

  1. Clone the repository:
git clone https://github.com/cbrgm/go-mcp-server.git
cd go-mcp-server
  1. Build the binary:
go build ./cmd/go-mcp-server
  1. Run the server:
# Default stdio transport
./go-mcp-server

# HTTP transport
./go-mcp-server -transport http -port 8080

**Claude Desktop Configuration:**

{
  "mcpServers": {
    "tea": {
      "command": "go",
      "args": ["run", "./cmd/go-mcp-server"],
      "cwd": "/path/to/go-mcp-server"
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.