MCP Catalogs
Home

everything vs mcp-zero

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

everything
by modelcontextprotocol
mcp-zero
by zeromicro
Stars★ 85,748★ 42
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptGo
Last committhis month4 mo ago

everything · Summary

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

mcp-zero · Summary

MCP server for go-zero framework that generates APIs, RPC services, and models with AI assistance.

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-zero · Use cases

  • Quickly generating new go-zero API and RPC services with minimal setup
  • Automatically creating database models from existing schemas or DDL files
  • Validating API specifications and protobuf definitions before generation

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

mcp-zero · Install

Installation

  1. Create a new directory for your MCP tool:

``bash mkdir go-zero-mcp && cd go-zero-mcp ``

  1. Initialize Go module:

``bash go mod init go-zero-mcp ``

  1. Install dependencies:

``bash go get github.com/modelcontextprotocol/go-sdk go get gopkg.in/yaml.v3 ``

  1. Save the main tool code as main.go
  1. Build the tool:

``bash go build -o mcp-zero main.go ``

  1. Configure Claude Desktop:

Add this configuration to your Claude Desktop MCP settings: ``json { "mcpServers": { "mcp-zero": { "command": "/path/to/your/mcp-zero", "env": { "GOCTL_PATH": "/path/to/goctl" } } } } ``

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