MCP Catalogs
Home

mcp-robot vs everything

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

mcp-robot
by makarski
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3177
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit9 mo agothis month

mcp-robot · Summary

Go-based MCP server SDK with type-safe tool definitions, fluent API, and automatic validation.

everything · Summary

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

mcp-robot · Use cases

  • Building MCP servers in Go for custom tool integrations
  • Creating type-safe tools with automatic validation
  • Implementing weather or other domain-specific tools
  • Developing Go applications that need to expose MCP capabilities

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-robot · Install

go get github.com/makarski/mcp-robot

For Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "mcp-robot": {
      "command": "go",
      "args": ["run", "github.com/makarski/mcp-robot"],
      "env": {}
    }
  }
}

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.