Wonderland Editor MCP Plugin

by Squareys

160 downloads
Not rated
GitHub

About

The Wonderland Editor MCP Plugin facilitates interaction with the Model Context Protocol (MCP) within the Wonderland Engine, enabling developers to use AI assistants to enhance their development workflows.

Details

Author
Squareys
Downloads
160
Categories
Developer Tools

- Primarily SSE transport with optional STDIO via Supergateway.
- Modify and manage Wonderland Engine objects and resources dynamically.
- Import files into the project.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Wonderland Editor MCP Plugin
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install the plugin into your project via npm i --save-dev path/to/repo or clone it into the plugins folder, then run npm run build. Once the project is loaded with plugin execution enabled, the MCP server runs via SSE transport on http://localhost:3000/sse. If your AI client does not support SSE, wrap the server using Supergateway: npx -y supergateway --sse "http://localhost:3000/sse".

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "wonderland editor mcp plugin": {
            "wonderland-editor-mcp": {
                "command": "npx",
                "args": [
                    "-y",
                    "supergateway",
                    "--sse",
                    "http://localhost:3000/sse"
                ]
            }
        }
    }
}

McpServers

{
    "wonderland-editor-mcp": {
        "command": "npx",
        "args": [
            "-y",
            "supergateway",
            "--sse",
            "http://localhost:3000/sse"
        ]
    }
}

Wonderland Editor MCP Plugin

Overview

The Wonderland Editor MCP Plugin facilitates interaction with the Model Context Protocol (MCP) within the Wonderland Engine, enhancing your development workflows with AI assistants.

Configuration

Project

First, install the plugin into your project:

// Clone this repository into the plugins folder of your project, or install via npm
npm i --save-dev path/to/repo

cd path/to/repo
npm i
npm run build

AI Agent Client

Once the project is loaded and plugin execution is enabled, the MCP server runs via SSE transport on
http://localhost:3000/sse.

If you can't use SSE, because your client doesn't support it, you can wrap it like this:

```sh

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.