MCP Catalogs
Home

everything vs go-playground-mcp

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

everything
by modelcontextprotocol
go-playground-mcp
by samber
Stars★ 85,748★ 5
30d uses
Score7740
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

go-playground-mcp · Summary

MCP server for executing Go code in Go Playground and generating shareable URLs.

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-playground-mcp · Use cases

  • AI assistants that need to execute Go code for code examples or debugging
  • Educational tools for learning Go programming language
  • Documentation systems that need to include live, executable Go code examples

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

go-playground-mcp · Install

Install via npm: npm install -g go-playground-mcp

For Claude Desktop, add to config.json:

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