by Roblox
Standalone Roblox Studio MCP Server
# Add to your Claude Code skills
git clone https://github.com/Roblox/studio-rust-mcp-serverGuides for using mcp servers skills like studio-rust-mcp-server.
Last scanned: 5/18/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-18T08:04:09.419Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}studio-rust-mcp-server is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Roblox. Standalone Roblox Studio MCP Server. It has 478 GitHub stars.
Yes. studio-rust-mcp-server passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/Roblox/studio-rust-mcp-server" and add it to your Claude Code skills directory (see the Installation section above).
studio-rust-mcp-server is primarily written in Rust. It is open-source under Roblox on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh studio-rust-mcp-server against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
[!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.

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.