by Roblox
Standalone Roblox Studio MCP Server
# Add to your Claude Code skills
git clone https://github.com/Roblox/studio-rust-mcp-server[!WARNING]
This MCP Server is no longer being actively developed
We’ve shifted ongoing engineering investment to the built-in MCP Server included with Roblox Studio, which we recommend as the best way to connect external AI tools going forward.
This server’s source code and previous releases will remain available here for reference and existing workflows.
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.
No comments yet. Be the first to share your thoughts!

The setup process also contains a small plugin installation and Claude Desktop configuration script.
start_play, run_server, or stop).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.
For Claude Desktop, go to Settings > Developer > Edit Config. This opens location of the claude_desktop_config.json.
Some clients require user to setup the mcp server manually for each project. For example, Claude Code command would look like this:
claude mcp add --transport stdio Roblox_Studio -- '/Applications/RobloxStudioMCP.app/Contents/MacOS/rbx-studio-mcp' --stdio
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.