Skip to main content
Glama
boshyxd

Roblox Studio MCP Server

get_place_info

Retrieve place ID, name, and game settings in Roblox Studio using an AI-powered MCP server, enabling efficient access to studio data for enhanced project management.

Instructions

Get place ID, name, and game settings

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function that executes the tool logic by requesting place info from the Studio bridge client and formatting the response as MCP content.
    async getPlaceInfo() {
      const response = await this.client.request('/api/place-info', {});
      return {
        content: [
          {
            type: 'text',
            text: JSON.stringify(response, null, 2)
          }
        ]
      };
    }
  • The input schema definition for the tool, specifying no required parameters.
    {
      name: 'get_place_info',
      description: 'Get place ID, name, and game settings',
      inputSchema: {
        type: 'object',
        properties: {}
      }
    },
  • src/index.ts:654-655 (registration)
    The dispatcher case in the CallToolRequest handler that routes calls to the getPlaceInfo method.
    case 'get_place_info':
      return await this.tools.getPlaceInfo();

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

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