roblox-studio
Provides tools for interacting with a Roblox Studio place, allowing agents to inspect the hierarchy, generate terrain and geometry, write and patch Luau scripts, apply SceneSpec map builds, validate geometry, and orchestrate playtests through the Roblox Studio bridge.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@roblox-studioinspect the Workspace hierarchy"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Skills
roblox-studio connects Claude Code, Codex, Cursor, Gemini CLI, and other coding agents to the place open in Roblox Studio.
The agent can inspect the hierarchy, draft a SceneSpec, create terrain and geometry, write scoped Luau, patch generated instances, mirror code to Rojo, validate the map, and coordinate playtests. Studio changes use Undo recording and new builds stay under Workspace/MapDrafts.
Prompt -> inspect -> SceneSpec -> dry run -> apply -> validate -> playtest
Install
Claude Code
The marketplace plugin includes the skill and starts the local MCP server:
/plugin marketplace add ShiroKSH/skills
/plugin install roblox-studio@skillsCodex
npx skills add ShiroKSH/skills -g
codex mcp add roblox-studio -- npx -y github:ShiroKSH/skillsRestart Codex after adding the MCP server.
Cursor, Copilot, Gemini CLI, and other hosts
Install the skill:
npx skills add ShiroKSH/skills -gAdd the bridge as a stdio MCP server:
{
"mcpServers": {
"roblox-studio": {
"command": "npx",
"args": ["-y", "github:ShiroKSH/skills"]
}
}
}Requirements: Node.js 20 or newer and Roblox Studio.
Related MCP server: Roblox MCP
Install the Studio plugin
Clone the repository and run the installer:
git clone https://github.com/ShiroKSH/skills.git
cd skills
npm install
npm run install:pluginThe command builds dist/RobloxStudioBridge.rbxm with Rojo and copies it into the local Roblox plugins directory on Windows or macOS. The project pins Rojo in rokit.toml.
Manual fallback: run npm run build:plugin, then copy the .rbxm file into %LOCALAPPDATA%\Roblox\Plugins on Windows or ~/Documents/Roblox/Plugins on macOS.
Connect Studio
Enable HTTP requests for the place.
Open the
Roblox Studio Bridgeplugin panel.Keep host
127.0.0.1and port3765.Paste the token printed by the MCP server and select
Connect.Run
studio_pingfrom the agent.
The token is generated locally, is never a Roblox credential, is not persisted by the plugin, and is cleared from the panel after connection. Set ROBLOX_STUDIO_BRIDGE_TOKEN only when a stable local token is needed.
What the bridge exposes
Bounded hierarchy and property inspection.
SceneSpec map builds and graybox passes.
Terrain generation through Studio APIs.
Batched create, set, ensure, and delete operations inside managed roots.
Camera control and viewport raycast probes for visual checks.
Doors, buttons, elevators, teleporters, checkpoints, and scoped runtime scripts.
Geometry validation, map-readiness contracts, playtest requests, and Studio output.
Rojo projects under
generated/rojo/<mapName>whencodegen.targetisrojoorboth.
The full MCP tool list and protocol are documented in docs/protocol.md. SceneSpec fields are defined in docs/scene-spec.schema.json.
Map workflow
Run
studio_pingand inspect the relevant place hierarchy.Build a SceneSpec rooted at
Workspace/MapDrafts.Run
map_apply_scene_specwithdryRun=true.Review the target root, object count, touched services, scripts, filesystem writes, terrain, and risks.
Apply with
dryRun=false.Run
map_validateon the returned map root with strict geometry enabled.Run
map_readiness_checkfor playable builds.Inspect several camera angles, playtest interactions, read Studio output, and patch concrete failures.
Start with examples/simple-obby.scene.json for a minimal spec or examples/vertical-bazaar.scene.json for a layered map. Every apply writes a filesystem manifest under logs/manifests/ and a SceneManifest value under the generated map root.
Build evolution
These are cropped Roblox viewport frames from real iterations. Desktop chrome, chats, usernames, paths, tokens, and unrelated files are excluded.
V1 first pass | V4 exterior pass |
|
|
V4 balcony | V4 window and chimney |
|
|
Safety
The HTTP bridge binds to loopback only; the Studio plugin rejects non-loopback hosts.
Every plugin endpoint except minimal health status requires the shared token.
Poll credentials are sent in a POST body, not a URL.
Dangerous Luau execution is disabled by default and filtered again in Studio.
Deletes require
DELETE_MAP_DRAFTSand remain limited to managed build roots.External asset IDs require an explicit allowlist.
Command logs redact tokens, source, code, cookies, passwords, and confirmation values.
Studio changes use
ChangeHistoryServicerecording with a waypoint fallback.
See docs/safety.md for the full boundary.
Final result
The same workflow can move from an early blockout to a connected, interactive Roblox place, then keep repairing it from validation and playtest feedback:
Latest playtest | Latest station detail |
|
|
Development
npm install
npm run check
npm run validate:skill
npm run build:pluginPull requests receive automatic reviews from CodeRabbit, Qodo, and Sourcery. GitHub CodeQL scans JavaScript and TypeScript changes, while Dependabot opens grouped weekly dependency updates and immediate security-fix PRs. Automated suggestions still need to be verified against the tests and the Roblox Studio safety boundaries.
More detail: Contributing, Protocol, Safety, Troubleshooting, and Changelog.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ShiroKSH/skills'
If you have feedback or need assistance with the MCP directory API, please join our Discord server




