by Roblox
Enables Roblox Studio to exchange tool requests and responses with AI assistants such as Claude Desktop and Cursor via a long‑polling web server and a stdio‑based RMCP server.
Provides a reference implementation of the Model Context Protocol that lets a Roblox Studio plugin communicate with external AI tools. The server consists of an Axum‑based web endpoint for long‑polling and an rmcp
process that talks to AI clients over standard input/output.
cargo run
.rmcp
server using --stdio
transport for direct communication with Claude Desktop or Cursor.insert_model
and run_code
.Q: Do I need to run the server manually? A: No. The installer starts the server automatically when the Studio plugin is enabled.
Q: Which AI clients are supported? A: Claude Desktop and Cursor are detected automatically; other MCP‑compatible clients can be added manually.
Q: Can I build the server from source?
A: Yes. Install Rust, clone the repository, and run cargo run
.
Q: Is my Roblox place safe? A: The server grants full read/write access to the opened place, so only trusted AI clients should be connected.
Q: How do I add the server to a custom MCP client configuration?
A: Add a JSON entry under mcpServers
with the path to the executable and the --stdio
argument as shown in the README.
This repository contains a reference implementation of the Model Context Protocol (MCP) that enables communication between Roblox Studio via a plugin and Claude Desktop or Cursor. It consists of the following Rust-based components, which communicate through internal shared objects.
axum
that a Studio plugin long polls.rmcp
server that talks to Claude via stdio
transport.When LLM requests to run a tool, the plugin will get a request through the long polling and post a response. It will cause responses to be sent to the Claude app.
Please note that this MCP server will be accessed by third-party tools, allowing them to modify and read the contents of your opened place. Third-party data handling and privacy practices are subject to their respective terms and conditions.
The setup process also contains a short plugin installation and Claude Desktop configuration script.
This MCP Server supports pretty much any MCP Client but will automatically set up only Claude Desktop and Cursor if found.
To set up automatically:
To set up manually add following to your MCP Client config:
{
"mcpServers": {
"Roblox Studio": {
"args": [
"--stdio"
],
"command": "Path-to-downloaded\\rbx-studio-mcp.exe"
}
}
}
On macOS the path would be something like "/Applications/RobloxStudioMCP.app/Contents/MacOS/rbx-studio-mcp"
if you move the app to the Applications directory.
To build and install the MCP reference implementation from this repository's source code:
cargo run
This command carries out the following actions:
After the command completes, the Studio MCP Server is installed and ready for your prompts from Claude Desktop.
To make sure everything is set up correctly, follow these steps:
The MCP Studio plugin is ready for prompts.
appears in the output.
Clicking on the plugin's icon toggles MCP communication with Claude Desktop on and off,
which you can also verify in the console output.insert_model
and run_code
).Note: You can fix common issues with setup by restarting Studio and Claude Desktop. Claude sometimes is hidden in the system tray, so ensure you've exited it completely.
Please log in to share your review and rating for this MCP.
Discover more MCP servers with similar functionality and use cases
by zed-industries
Provides real-time collaborative editing powered by Rust, enabling developers to edit code instantly across machines with a responsive, GPU-accelerated UI.
by cline
Provides autonomous coding assistance directly in the IDE, enabling file creation, editing, terminal command execution, browser interactions, and tool extension with user approval at each step.
by continuedev
Provides continuous AI assistance across IDEs, terminals, and CI pipelines, offering agents, chat, inline editing, and autocomplete to accelerate software development.
by github
Enables AI agents, assistants, and chatbots to interact with GitHub via natural‑language commands, providing read‑write access to repositories, issues, pull requests, workflows, security data and team activity.
by block
Automates engineering tasks by installing, executing, editing, and testing code using any large language model, providing end‑to‑end project building, debugging, workflow orchestration, and external API interaction.
by RooCodeInc
An autonomous coding agent that lives inside VS Code, capable of generating, refactoring, debugging code, managing files, running terminal commands, controlling a browser, and adapting its behavior through custom modes and instructions.
by lastmile-ai
A lightweight, composable framework for building AI agents using Model Context Protocol and simple workflow patterns.
by firebase
Provides a command‑line interface to manage, test, and deploy Firebase projects, covering hosting, databases, authentication, cloud functions, extensions, and CI/CD workflows.
by gptme
Empowers large language models to act as personal AI assistants directly inside the terminal, providing capabilities such as code execution, file manipulation, web browsing, vision, and interactive tool usage.