Roblox-MCP-proxy
Allows interaction with a local Roblox Studio instance, providing tools for reading and writing scripts, exploring the DataModel, and executing commands through a persistent MCP 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-MCP-proxyShow me the DataModel tree of my current Roblox Studio 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 Studio MCP to Notion Bridge
This project solves the architectural incompatibility between the official Roblox Studio MCP (Model Context Protocol) and stateless cloud agents (like Notion AI).
⚠️ The Problem
The official Roblox Studio MCP runs locally as a stdio executable (StudioMCP.exe).
Tools like Cursor or local Claude apps connect to it directly via child processes. They keep the connection open forever, which maintains the "Active Studio" state.
However, cloud-based agents like Notion communicate over HTTP/SSE. Notion connects, executes a tool, and drops the connection. When it reconnects, it spins up a new local MCP process that has forgotten which Studio instance is active. Because of this, trying to use supergateway out-of-the-box results in crashes, lost state, and the inability to execute complex tasks like getting the DataModel tree.
Related MCP server: Notion MCP Server
🛠️ The Solution
This bridge creates a Persistent Multiplexer.
mcp-server.jslaunches a single, global instance ofStudioMCP.exein the background and keeps it alive forever.It listens for incoming transient SSE connections from the cloud (Notion).
It intercepts and filters out unsolicited
notifications/tools/list_changedevents that otherwise cause Notion's MCP client to crash.proxy.jsadds a layer of Bearer Token authentication so you can safely expose the bridge to the public internet via a tunnel.
🚀 Setup Instructions
1. Installation
Clone this repository and install the dependencies:
npm install2. Configuration
Copy the .env.example file to .env:
cp .env.example .envOpen .env and fill in your details:
PUBLIC_URL: The public HTTPS URL where your tunnel is hosted (e.g.https://roblox.your-domain.com). This is required so the SSE endpoint can tell Notion where to send POST messages.AUTH_TOKEN: Create a secure, random string (e.g.my-super-secret-token-123).
3. Start the Bridge
Run the launcher script:
start-bridge.batThis will open two terminal windows: one for the MCP Server (Port 8000) and one for the Auth Proxy (Port 8001).
4. Create a Tunnel
You must expose Port 8001 to the internet. You can use Cloudflare Tunnels, ngrok, or a reverse SSH tunnel. Example using Cloudflare:
cloudflared tunnel --url http://localhost:80015. Connect Notion (Standard Chat Workflow)
You do NOT need to use "Custom Agents" (which consume expensive credits). You can connect this MCP server directly to a standard Notion AI chat!
Simply open a new standard chat in Notion and paste the following text:
Connect to my Roblox Studio MCP tunnel using this data:
MCP URL: https://<YOUR_TUNNEL_URL>/sse
Auth method: Bearer Token
Token: <YOUR_AUTH_TOKEN>
Transport: SSENotion will automatically display a connection window. Confirm the details, and the standard Notion AI will instantly connect to your local Roblox Studio and gain access to the full suite of tools (reading/writing scripts, exploring the DataModel, etc.)!
6. Agent Instructions Prompt
To ensure the AI knows how to work with your Studio, send it this prompt after connecting:
You are an expert Roblox Studio assistant. You are connected to my local Roblox Studio via an MCP SSE Bridge.
**Initialization Check:**
If you do not see advanced tools like `get_tree` or `execute_script`, it means the server needs to be initialized. In that case:
1. Call `list_roblox_studios` to find the active studio ID.
2. Call `set_active_studio` with that ID.
3. Stop and ask me to reply "continue" so your tools refresh.
**Workflow:**
- Always inspect the DataModel (`get_tree`) and read scripts before proposing changes.
- Prefer small, targeted code edits. Preserve existing architecture and naming conventions.
- Never make destructive changes without asking first.
- If a test cannot be executed via MCP, suggest specific Studio play-test steps.Enjoy seamless, cloud-based Roblox game development directly in Notion!
This server cannot be installed
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
- Flicense-quality-maintenanceBridges STDIO-based MCP clients with SSE-based MCP servers, allowing applications like Claude Desktop to connect to remote MCP servers that use SSE transport.Last updated9
- Alicense-qualityDmaintenanceConnects Claude Desktop and other MCP clients directly to Notion with secure SSE support for CRUD operations. Designed for cloud deployment with bearer authentication, rate limiting, and security headers.Last updated1,9892MIT
- Alicense-qualityDmaintenanceExposes any stdio-based MCP server to the internet via HTTP/SSE transport, enabling remote agents to access MCP tools over a network.Last updated17MIT
- Flicense-qualityCmaintenanceEnables deploying a remote MCP server on Cloudflare Workers with OAuth authentication and SSE transport, allowing remote connections from MCP clients like Claude Desktop.Last updated
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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/szumajsanba-sys/Roblox-MCP-proxy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server