Skip to content
VS Code

roblox studio mcp for VS Code

io.github.justice219/roblox-studio-mcp

Connect AI assistants to Roblox Studio — manipulate the DataModel with 14 tools

client:VS Code transport:stdio runtime:npm

Install roblox studio mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-bridge-port",
      "description": "MCP_BRIDGE_PORT",
      "password": true
    }
  ],
  "servers": {
    "roblox-studio-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@jamesworkbenchcrm/roblox-studio-mcp"
      ],
      "env": {
        "MCP_BRIDGE_PORT": "${input:mcp-bridge-port}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

roblox studio mcp in other clients