Standalone Roblox Studio MCP Server
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.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.
Roblox/studio-rust-mcp-server
May 9, 2025
July 4, 2025
Rust