Roblox Super MCP
Provides tools for interacting with Roblox Studio, including discovery, inspection, auditing, atomic script edits, verification, and rollback-oriented capabilities for Roblox projects.
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 Super MCPlist all scripts in the current place"
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.
Roblox Super MCP
Roblox Super MCP is a Node.js MCP server that connects an MCP client to the official Roblox Studio MCP process. It adds discovery, inspection, auditing, atomic script edits, verification, and rollback-oriented tools.
Requirements
Windows
Roblox Studio with the official
StudioMCP.exeNode.js 18 or newer
An MCP-compatible client
Related MCP server: Roblox Studio Ultimate MCP Server
Install and test
From the project directory, run:
npm install
npm test
node server.jsThe server communicates over standard input and output. Stop the manual test
with Ctrl+C after confirming it starts successfully.
Replace an existing MCP launcher
If your current setup starts the original MCP through an mcp.bat file:
Back up the existing launcher.
Replace its contents with:
@echo off cd /d "<path-to-this-project>" node server.jsReplace
<path-to-this-project>with the folder where you cloned this repository. Keep the quotes if the path contains spaces.Restart the MCP client and Roblox Studio connection.
Do not print diagnostic messages to standard output. MCP messages use that stream; diagnostics should go to standard error or a log file.
Configure an MCP client directly
You can configure the client without a batch file. Add this server entry and replace the example path with the location of your local clone:
{
"mcpServers": {
"roblox-super-mcp": {
"command": "node",
"args": ["<path-to-this-project>/server.js"]
}
}
}Use forward slashes in JSON paths, or escape Windows backslashes as \\.
How it works
When started, the server locates the newest Roblox StudioMCP.exe in the
current Windows user's Roblox installation, starts it, and forwards validated
MCP requests to it. The available tool definitions are registered in
tool_registry.js; implementation helpers live in the tools directory.
Updating
Pull the latest version, test it, and restart the MCP client:
git pull
npm install
npm testKeep a backup of the previous launcher until the replacement has been tested in Roblox Studio.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceAn agentic MCP server for Roblox Studio that provides over 45 tools for script diffing, playtest automation, and bulk instance manipulation. It enables AI agents to manage full development cycles within Roblox, including transaction-safe batch operations and real-time script reviews.Last updated21MIT
- Alicense-qualityCmaintenanceA comprehensive MCP server providing 41 tools for complete Roblox Studio control, enabling safe script editing with syntax checking, instance manipulation, and backup features directly from Claude Code or any MCP-compatible AI assistant.Last updated1MIT
- AlicenseAqualityBmaintenanceDebug and inspection tooling for Roblox projects, exposed as an MCP server so an AI agent can explore the instance tree, read/write properties, call remotes, and run Luau in a Roblox client driven by an executor.Last updated1428MIT
- Alicense-qualityBmaintenanceDebug and inspection tooling for Roblox projects, exposed as an MCP server so an AI agent can explore the instance tree, read/write properties, call remotes, and run Luau in a Roblox client driven by an executor.Last updated281MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for understanding Javascript internals from ECMAScript specification.
MCP server for interacting with the Supabase platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/DogTheSeller/RobloxSuperMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server