MCP Catalogs
Home

everything vs suse-ai-up

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

everything
by modelcontextprotocol
suse-ai-up
by SUSE
Stars★ 85,748★ 28
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
Ops & InfraAI / LLM ToolsDeveloper Tools
LanguageTypeScriptGo
Last committhis month1 mo ago

everything · Summary

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

suse-ai-up · Summary

SUSE AI Universal Proxy is a comprehensive platform for managing and proxying MCP servers with secure orchestration across multiple microservices.

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

suse-ai-up · Use cases

  • Enterprise AI service orchestration with centralized management
  • Multi-tenant MCP server deployment with authentication and security
  • AI application development with plugin-based extensibility

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

suse-ai-up · Install

Installation Options

Helm Installation (Recommended)

  1. Clone the repository: git clone https://github.com/suse/suse-ai-up
  2. Navigate to the directory: cd suse-ai-up
  3. In values.yaml, set:

- service.type: LoadBalancer - auth.method: development (for no auth)

  1. Install using the helm chart:

``bash helm install suse-ai-up ./charts/suse-ai-up ``

  1. Access the service at the IP address shown via kubectl get svc suse-ai-up-service

Local Development

git clone https://github.com/suse/suse-ai-up.git
cd suse-ai-up
go run ./cmd/uniproxy

**Claude Desktop Integration:** Add this to your Claude Desktop config.json:

"mcpServers": {
  "suse-ai-up": {
    "command": "docker",
    "args": ["run", "--rm", "-p", "8911:8911", "suse/suse-ai-up"]
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.