The PlayCanvas Editor Automation MCP Server is a tool designed to automate tasks within the PlayCanvas Editor using a Large Language Model (LLM). This server enables developers to streamline workflows, manage entities, and manipulate assets programmatically.
create_entities
modify_entities
duplicate_entities
reparent_entity
delete_entities
list_entities
add_components
remove_components
list_assets
delete_assets
instantiate_template_assets
create_script
set_script_text
script_parse
create_material
set_material_diffuse
add_script_component_script
modify_scene_settings
query_scene_settings
store_search
store_get
store_download
bash
git clone https://github.com/playcanvas/editor-mcp-server.git
bash
npm install
chrome://extensions/
and enable Developer mode.Load unpacked
and select the extensions
folder.Claude
> Settings
.Developer
and then Edit Config
.claude_desktop_config.json
file.File
> Preferences
> Cursor Settings
.+ Add new global MCP server
.mcp.json
file.{
"mcpServers": {
"playcanvas": {
"command": "cmd",
"args": [
"/c",
"npx",
"tsx",
"C:\\path\\to\\mcp-editor\\src\\server.ts"
]
}
}
}
{
"mcpServers": {
"playcanvas": {
"command": "npx",
"args": [
"tsx",
"/path/to/mcp-editor/src/server.ts"
]
}
}
}
This project is designed to enhance the PlayCanvas Editor by integrating AI-driven automation. It is particularly useful for developers looking to optimize their workflow and manage complex scenes efficiently.
Contributions are welcome! Please refer to the repository for more details on how to contribute.