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 | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsBrowser Automation |
| Language | TypeScript | TypeScript |
| Last commit | this month | 4 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-everythingeditor-mcp-server · Install
Installation
- Install dependencies:
npm install
- Install Chrome Extension:
- Visit chrome://extensions/ and enable Developer mode - Click Load unpacked and select the extension folder - Load the PlayCanvas Editor
- Configure MCP server (Claude Desktop example):
``json { "mcpServers": { "playcanvas": { "command": "npx", "args": [ "tsx", "/path/to/editor-mcp-server/src/server.ts" ], "env": { "PORT": "52000" } } } } ``
- 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)