The Roblox Studio MCP Server enables communication between Roblox Studio and AI tools like Claude Desktop or Cursor, allowing these tools to interact with your Roblox projects through a plugin interface. The server handles requests between Studio and AI applications using the Model Context Protocol (MCP).
Make sure you have Roblox Studio and either Claude Desktop or Cursor installed and launched at least once.
Close any running instances of Roblox Studio, Claude Desktop, and Cursor.
Download the latest installer:
Restart Claude Desktop/Cursor and Roblox Studio after installation completes.
To configure an MCP client manually:
{
"mcpServers": {
"Roblox Studio": {
"args": [
"--stdio"
],
"command": "Path-to-downloaded\\rbx-studio-mcp.exe"
}
}
}
For macOS, use a path format like: "/Applications/RobloxStudioMCP.app/Contents/MacOS/rbx-studio-mcp"
Install Rust if you don't have it already.
Close any running instances of Roblox Studio and Claude Desktop/Cursor.
Download or clone the repository.
Open a terminal and navigate to the repository root.
Run the build and installation command:
cargo run
This command builds the MCP server, configures Claude, and installs the required Studio plugin.
After installation, confirm everything is working properly:
Open Roblox Studio and check that the MCP plugin appears in the Plugins tab.
Look for the message The MCP Studio plugin is ready for prompts.
in the Studio console.
In Claude Desktop, click the hammer icon beneath the prompt field to see available Roblox Studio tools (insert_model
and run_code
).
If you encounter issues, try restarting both Studio and Claude Desktop (make sure Claude is fully closed, not just minimized to the system tray).
Open a Roblox place in Studio.
Enter a prompt in Claude Desktop or Cursor. Accept any permission requests to communicate with Studio.
The AI can now interact with your project - you can verify actions by checking:
When the AI needs to run a tool (like inserting a model or running code), the Studio plugin will receive and process these requests, allowing the AI to make changes to your Roblox project.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "Roblox-Studio" '{"command":"rbx-studio-mcp.exe","args":["--stdio"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"Roblox Studio": {
"command": "rbx-studio-mcp.exe",
"args": [
"--stdio"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"Roblox Studio": {
"command": "rbx-studio-mcp.exe",
"args": [
"--stdio"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect