MCP Catalogs
Home

fusio vs everything

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

fusio
by apioo
everything
by modelcontextprotocol
Stars★ 2,088★ 85,748
30d uses
Score5477
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguagePHPTypeScript
Last committhis monththis month

fusio · Summary

Fusio is a self-hosted API management platform with native MCP support to expose APIs as tools for AI agents.

everything · Summary

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

fusio · Use cases

  • Transform legacy databases into REST APIs accessible by AI agents
  • Create and monetize API products with developer portals and SDK generation
  • Build custom backend logic using AI-assisted development for autonomous 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

fusio · Install

Docker Installation

services:
  fusio:
    image: fusio/fusio
    restart: always
    environment:
      FUSIO_PROJECT_KEY: "42eec18ffdbffc9fda6110dcc705d6ce"
      FUSIO_CONNECTION: "pdo-mysql://fusio:61ad6c605975@mysql-fusio/fusio"
      FUSIO_BACKEND_USER: "test"
      FUSIO_BACKEND_EMAIL: "demo@fusio-project.org"
      FUSIO_BACKEND_PW: "test1234"
    ports:
      - "8080:80"

  mysql-fusio:
    image: mysql:8.0
    restart: always
    environment:
      MYSQL_RANDOM_ROOT_PASSWORD: "1"
      MYSQL_USER: "fusio"
      MYSQL_PASSWORD: "61ad6c605975"
      MYSQL_DATABASE: "fusio"
    volumes:
      - ./db:/var/lib/mysql
docker compose up -d

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "fusio": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "fusio/fusio"]
    }
  }
}

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.