MCP server
by phaserjs
Phaser Editor MCP Server: AI-powered bridge to Phaser Editor v5 — manage scenes, assets and tilemaps via natural languag
Connects LLMs to Phaser Editor v5 to create and manage game scenes, assets, and tilemaps through natural language interactions. Works with a running Phaser Editor instance to modify projects.
Phaser Editor MCP Server is an official MCP server published by phaserjs that provides AI assistants with tools and capabilities via the Model Context Protocol. Phaser Editor MCP Server: AI-powered bridge to Phaser Editor v5 — manage scenes, assets and tilemaps via natural languag It is categorized under developer tools. This server exposes 57 tools that AI clients can invoke during conversations and coding sessions.
You can install Phaser Editor MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Phaser Editor MCP Server is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Useful MCP listing: Phaser Editor MCP Server is the kind of server we cite when onboarding engineers to host + tool permissions.
Phaser Editor MCP Server is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated Phaser Editor MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
Phaser Editor MCP Server reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend Phaser Editor MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Useful MCP listing: Phaser Editor MCP Server is the kind of server we cite when onboarding engineers to host + tool permissions.
Phaser Editor MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
According to our notes, Phaser Editor MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We evaluated Phaser Editor MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
We wired Phaser Editor MCP Server into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
showing 1-10 of 65
This Model Context Protocol (MCP) server provides the tools to connect an LLM with Phaser Editor v5. It is designed to work seamlessly with Phaser Editor's IDE features, allowing developers to create and manage game scenes efficiently.
This server is available as an NPM package and you can use it in the configuration of MCP hosts like Cursor, Claude Desktop, GitHub Copilot, etc...
This is an example of a configuration file for Cursor:
{
"mcpServers": {
"phaser-editor": {
"command": "npx",
"args": ["@phaserjs/editor-mcp-server"]
}
}
}
This servers connects with a running instance of the Phaser Editor v5 desktop application. All changes on the project are made through the Phaser Editor running instance.
All tools provided by this server are specifically tailored to work with Phaser Editor features, such as the Scene Editor, Asset Pack Editor, and others. These tools are not intended for direct modification of your project's source code. However, when used alongside code editors like Cursor, the server enables simultaneous interaction with both Phaser Editor's custom files and the project's source code—creating a powerful, integrated development workflow.
We recommend starting with one of the Phaser Editor project templates, which are preconfigured for seamless integration with Cursor. These templates include all necessary configurations and the rules for the LLMs to understand how to interact with Phaser Editor's custom files and the project's source code.
Large Language Models (LLMs) excel at generating new content when provided with high-quality, contextual examples. This is especially effective for game level generation. To take full advantage of this capability, it's a good practice to create training levels that clearly express the concepts and elements you want the model to replicate.
Training levels serve as concrete examples that define the structure and logic of your game. These examples help the LLM understand the components involved and how they interact, enabling it to generate new levels that align with your design.
For example, if you're working with tilemap-based levels, you can create a TrainingLevel scene that includes the key objects used in your game. To improve clarity and semantic understanding:
pipe, cloud, or mountain.This organization helps the LLM detect patterns and apply them to new content generation tasks.
The MCP server provides tools to inspect texture images and generate scene "screenshots." While these visuals are helpful, they may not always be sufficient for the LLM to fully grasp the game's context and logic.
That's why creating structured and well-labeled training levels is essential. These levels provide a richer, more actionable context that enhances the model's ability to generate accurate and relevant game content.
This project provides a comprehensive set of tools for managing scenes, assets, tilemaps, animations, and more within the Phaser Editor environment. Below is a summary of all available tools, grouped by their main functionalities.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.