MCP Catalogs
Home

kirby-mcp vs everything

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

kirby-mcp
by bnomei
everything
by modelcontextprotocol
Stars★ 50★ 85,748
30d uses
Score4577
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePHPTypeScript
Last commit1 mo agothis month

kirby-mcp · Summary

A CLI-first MCP server for Kirby CMS projects that allows inspection of blueprints/templates/plugins and interaction with a real Kirby runtime.

everything · Summary

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

kirby-mcp · Use cases

  • Inspecting and modifying Kirby project blueprints, templates, and content
  • Debugging Kirby applications through runtime evaluation and logging
  • Generating IDE helpers for better autocompletion in Kirby projects

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

kirby-mcp · Install

Installation

From your Kirby project root:

composer require bnomei/kirby-mcp --dev
vendor/bin/kirby-mcp install
vendor/bin/kirby-mcp

Claude Desktop Configuration

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "kirby": {
      "command": "php",
      "args": ["vendor/bin/kirby-mcp"],
      "env": {
        "KIRBY_MCP_PROJECT_ROOT": "/path/to/your/kirby/project"
      }
    }
  }
}

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.