Skip to main content

AI-Powered Roblox Studio Integration

Connect AI assistants to Roblox Studio with 53+ specialized MCP tools for project exploration, script editing, mass operations, and intelligent automation.

Roblox Studio MCP Integration

Quick start

Get up and running in minutes with Claude Code or any MCP-compatible AI assistant.

1

Install the MCP server

For Claude Code users, run this command in your terminal:
claude mcp add robloxstudio -- npx -y robloxstudio-mcp
For other MCP clients (Claude Desktop, etc.), add this configuration:
{
  "mcpServers": {
    "robloxstudio-mcp": {
      "command": "npx",
      "args": ["-y", "robloxstudio-mcp"],
      "description": "Advanced Roblox Studio integration for AI assistants"
    }
  }
}
2

Install the Studio plugin

Download the companion Roblox Studio plugin and enable HTTP requests:
  1. Download MCPPlugin.rbxmx
  2. Save to %LOCALAPPDATA%/Roblox/Plugins folder (Windows) or ~/Documents/Roblox/Plugins/ (macOS)
  3. Enable “Allow HTTP Requests” in Game Settings → Security
  4. Click the “MCP Server” button in the Plugins toolbar
3

Start using AI tools

Once connected, your AI assistant has access to 53+ specialized tools:
// Get complete project structure
get_project_structure("game.ServerStorage", maxDepth=5)

// Search for specific objects
search_objects("Sound", searchType="class")

// Bulk property modifications
mass_set_property(paths, "Transparency", 0.5)

// Smart script editing
edit_script_lines("game.ServerScriptService.Main", 10, 15, newCode)

Explore by category

Browse our comprehensive API documentation organized by tool type.

File System Tools

Navigate instance hierarchies and search for scripts, models, and objects by name or content.

Studio Context Tools

Access place info, services, selections, and search across your entire Roblox project.

Property Tools

Read and modify instance properties with support for mass operations and calculated values.

Object Creation

Create, duplicate, and delete objects with smart naming patterns and property variations.

Script Editing

Read and edit Lua scripts with line-level precision, including insert and delete operations.

Attributes & Tags

Manipulate instance attributes and CollectionService tags for advanced object management.

Key features

What makes this fork unique from the original MCP server.

Long Polling Architecture

Instant response with long polling instead of 500ms interval polling. Dramatically reduces latency for AI operations.

Mass Operations

Bulk property editing and object creation with atomic undo/redo. Perfect for AI-driven refactoring and automation.

Line-Level Script Editing

Precise script modifications without rewriting entire files. Insert, edit, or delete specific line ranges.

Activity Logger

Full UI logger with copy/export functionality. Track every AI operation and debug plugin communication.

Resources

Learn more about the architecture and contribute to the project.

Architecture

Understand the dual-component system bridging AI with Roblox Studio

Plugin Setup

Install and configure the companion Studio plugin

Development

Set up your development environment and run tests

Ready to get started?

Install the MCP server and Studio plugin in minutes, then unlock 53+ AI tools for your Roblox development workflow.

View Quickstart Guide