Skip to main content
Glama

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.exe

  • Node.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.js

The 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:

  1. Back up the existing launcher.

  2. Replace its contents with:

    @echo off
    cd /d "<path-to-this-project>"
    node server.js

    Replace <path-to-this-project> with the folder where you cloned this repository. Keep the quotes if the path contains spaces.

  3. 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 test

Keep a backup of the previous launcher until the replacement has been tested in Roblox Studio.

Install Server
F
license - not found
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    B
    maintenance
    An 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 updated
    2
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Debug 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 updated
    14
    28
    MIT
  • A
    license
    -
    quality
    B
    maintenance
    Debug 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 updated
    28
    1
    MIT

View all related MCP servers

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

View all MCP Connectors

Latest Blog Posts

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