home / mcp / roblox studio mcp server
Create agentic AI workflows in ROBLOX Studio
Configuration
View docs{
"mcpServers": {
"boshyxd-robloxstudio-mcp": {
"command": "npx",
"args": [
"-y",
"robloxstudio-mcp@latest"
]
}
}
}You can connect AI assistants to Roblox Studio to explore your game structure, read and edit scripts, and perform bulk changes locally and safely using the Roblox Studio MCP Server. It enables you to leverage AI capabilities while keeping edits contained to your machine.
You interact with the Roblox Studio MCP Server by adding the MCP client integration to your AI assistant workflow and then connecting to the local MCP server configuration. Start Roblox Studio with the Studio MCP plugin installed and configured, and ensure HTTP requests are allowed in your Experience Settings under Security. Once you connect, you can ask your AI to analyze the game structure, locate deprecated APIs in scripts, or perform bulk changes like creating or updating many objects in a safe, local environment.
Inspector Edition provides a read-only variant that only exposes inspection tools. Use this when you want to safely browse the game structure and review scripts without any risk of creating or modifying content.
Prerequisites: ensure you have a working Node.js installation and access to a Roblox Studio environment where you can install the Studio plugin.
Step 1: Install the Studio plugin to your Plugins folder.
Step 2: In Roblox Studio, open Experience Settings and enable Allow HTTP Requests under Security.
Step 3: Connect your AI using one of the provided MCP client commands for your preferred AI. Choose one of the following based on your AI assistant: Claude, Codex, or Gemini.
Claude Code: run the following command in your terminal to add Roblox Studio MCP support for Claude:
claude mcp add robloxstudio -- npx -y robloxstudio-mcp@latestCodex CLI: run this command to add Roblox Studio MCP support for Codex:
codex mcp add robloxstudio -- npx -y robloxstudio-mcp@latestGemini CLI: run this command to add Roblox Studio MCP support for Gemini with trust enabled:
gemini mcp add robloxstudio npx --trust -- -y robloxstudio-mcp@latestIf you use other MCP clients, you can configure the server connection with the following JSON structure. This example shows the main Roblox Studio MCP server:
{
"mcpServers": {
"robloxstudio-mcp": {
"command": "npx",
"args": ["-y", "robloxstudio-mcp@latest"]
}
}
}If you encounter issues on Windows, use the cmd shell to run the same MCP command as shown above. This ensures compatibility with Windows environments.
{
"mcpServers": {
"robloxstudio-mcp": {
"command": "cmd",
"args": ["/c", "npx", "-y", "robloxstudio-mcp@latest"]
}
}
}Full MCP server that connects Roblox Studio to AI assistants for reading and editing the game structure and scripts.
Read-only inspector edition exposing inspection tools without writes, ideal for safely reviewing game structure and scripts.