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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"type": "object"
}
Implementation Reference
- src/tools/index.ts:37-47 (handler)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) } ] }; }
- src/index.ts:94-101 (schema)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();