Skip to main content
Glama

Roblox Studio MCP Server

studio-client.ts633 B
import { BridgeService } from '../bridge-service.js'; export class StudioHttpClient { private bridge: BridgeService; constructor(bridge: BridgeService) { this.bridge = bridge; } async request(endpoint: string, data: any): Promise<any> { try { const response = await this.bridge.sendRequest(endpoint, data); return response; } catch (error) { if (error instanceof Error && error.message === 'Request timeout') { throw new Error( 'Studio plugin connection timeout. Make sure the Roblox Studio plugin is running and activated.' ); } throw error; } } }

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/boshyxd/robloxstudio-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server