MCP Catalogs
Home

everything vs gograph

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

everything
by modelcontextprotocol
gograph
by ozgurcd
Stars★ 85,748★ 118
30d uses
Score7747
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsKnowledge Graph
LanguageTypeScriptGo
Last committhis monththis month

everything · Summary

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

gograph · Summary

A local AST/type-aware Go repository context indexer that creates optimized graphs for AI coding agents.

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

gograph · Use cases

  • Enhancing AI code understanding in Go projects by providing structured context
  • Code refactoring assistance by showing impact analysis of changes
  • Code quality analysis through cyclomatic complexity and coupling metrics

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

gograph · Install

# MacOS / Linux (via Homebrew)
brew install ozgurcd/tap/gograph

# Or using Go:
go install github.com/ozgurcd/gograph/cmd/gograph@latest

To use as an MCP server, you would need to integrate it with your MCP client configuration. The tool supports JSON output for machine-parseable results which is ideal for MCP integration.

Comparison generated from public README + GitHub signals. Last updated automatically.