MCP Catalogs
Home

everything vs editor-mcp-server

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

everything
by modelcontextprotocol
editor-mcp-server
by playcanvas
Stars★ 85,748★ 108
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsBrowser Automation
LanguageTypeScriptTypeScript
Last committhis month4 mo ago

everything · Summary

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

editor-mcp-server · Summary

MCP server for automating PlayCanvas editor through entity and asset management tools.

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

editor-mcp-server · Use cases

  • Automate repetitive entity creation and manipulation tasks in PlayCanvas scenes
  • Programmatically manage assets through AI-powered commands
  • Connect PlayCanvas with Claude for intelligent scene editing

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

editor-mcp-server · Install

Installation

  1. Install dependencies: npm install
  1. Install Chrome Extension:

- Visit chrome://extensions/ and enable Developer mode - Click Load unpacked and select the extension folder - Load the PlayCanvas Editor

  1. Configure MCP server (Claude Desktop example):

``json { "mcpServers": { "playcanvas": { "command": "npx", "args": [ "tsx", "/path/to/editor-mcp-server/src/server.ts" ], "env": { "PORT": "52000" } } } } ``

  1. Connect the editor:

- Open PlayCanvas Editor in Chrome - Click the Extensions icon and select PlayCanvas Editor MCP Extension - Click CONNECT (ensure port matches your MCP config)

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