MCP Catalogs
Home

everything vs mcp-center

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

everything
by modelcontextprotocol
mcp-center
by nautilus-ops
Stars★ 85,748★ 41
30d uses
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
Ops & InfraDeveloper ToolsMonitoring
LanguageTypeScriptRust
Last committhis month8 mo ago

everything · Summary

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

mcp-center · Summary

MCP Center is a centralized proxy service for managing and connecting multiple MCP servers with service discovery and authentication.

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

  • Managing multiple MCP servers in a Kubernetes cluster with unified service discovery
  • Implementing consistent authentication across all MCP servers
  • Monitoring and filtering tool parameters for traceability and debugging

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

Installation

Using Docker

# 1. Pull the latest image
docker pull nautilusops/mcp-center:latest

# 2. Start the container
docker run -d \
  --name mcp-center \
  -p 5432:5432 \
  -e MCP_ADMIN_TOKEN=your-custom-token \
  -e POSTGRES_HOST=your-postgres-host \
  -e POSTGRES_PORT=your-postgres-port \
  -e POSTGRES_USERNAME=your-postgres-username \
  -e POSTGRES_PASSWORD=your-postgres-password \
  -e POSTGRES_DATABASE=your-postgres-database \
  nautilusops/mcp-center:latest

From Source

# Clone the repository
git clone https://github.com/nautilus-ops/mcp-center.git
cd mcp-center

# Build the project
cargo build --release

# Set environments
export MCP_ADMIN_TOKEN=your-custom-token
export POSTGRES_HOST=your-postgres-host
export POSTGRES_PORT=your-postgres-port
export POSTGRES_USERNAME=your-postgres-username
export POSTGRES_PASSWORD=your-postgres-password
export POSTGRES_DATABASE=your-postgres-database

# Run the application
./target/release/mcp-center run --config bootstrap.toml

Claude Desktop Configuration

Add to Claude Desktop config.json:

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