drio
Open app

Editor Mcp Server

Source

MCP Server for AI automation of the PlayCanvas Editor

Catalog onlyCatalog onlySTDIO

Overview

The PlayCanvas Editor MCP Server is a server designed for AI automation of the PlayCanvas Editor, enabling developers to enhance their workflow with AI-driven features.

To use the MCP Server, install the necessary dependencies via npm, set up the Chrome extension, and configure the server with either Claude Desktop or Cursor.

  • AI-driven automation for PlayCanvas Editor - Compatibility with Claude Desktop and Cursor - Easy installation and setup process
  1. Automating repetitive tasks in the PlayCanvas Editor.
  2. Enhancing development efficiency with AI assistance.
  3. Streamlining the workflow for game developers using PlayCanvas.

Add to your AI client

Use these steps to connect Editor Mcp Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "editor-mcp-server-playcanvas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-editor-mcp-server-playcanvas"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "editor-mcp-server-playcanvas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-editor-mcp-server-playcanvas"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "editor-mcp-server-playcanvas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-editor-mcp-server-playcanvas"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "editor-mcp-server-playcanvas": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-editor-mcp-server-playcanvas"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "editor-mcp-server-playcanvas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-editor-mcp-server-playcanvas"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "editor-mcp-server-playcanvas": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-editor-mcp-server-playcanvas"
      ]
    }
  }
}

FAQ

What is required to run the MCP Server?

You need to have Claude Desktop or Cursor installed and configured to use the MCP Server effectively.

Is there a recommended subscription for Claude?

Yes, it is recommended to subscribe to a Pro Claude account for better performance and reliability.

Can I use the MCP Server without Claude?

No, the MCP Server is designed to be driven by Claude, and its functionality relies on it.