MCP Catalogs
Home

go-mcp vs everything

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

go-mcp
by MegaGrindStone
everything
by modelcontextprotocol
Stars★ 46★ 85,748
30d uses
Score3677
Official
Categories
Developer ToolsAI / LLM ToolsFile System
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit13 mo agothis month

go-mcp · Summary

Go implementation of MCP protocol with server and client functionality, supporting tools, resources, and prompts.

everything · Summary

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

go-mcp · Use cases

  • Building Go-based LLM applications with tool integration
  • Creating MCP servers for file system operations
  • Implementing real-time notifications and data synchronization

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

go get github.com/MegaGrindStone/go-mcp

For Claude Desktop, add this to your configuration:

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

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.