Skip to main content
Glama

project_info

Retrieve essential Unity project details, including render pipeline, version, path, and platform information, to streamline development workflows and ensure accurate project setup.

Instructions

Get comprehensive Unity project information including render pipeline details, project path, Unity version, and platform info

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Tool registration for 'project_info' including name, description, and empty input schema
    { name: 'project_info', description: 'Get comprehensive Unity project information including render pipeline details, project path, Unity version, and platform info', inputSchema: { type: 'object', properties: {} } },
  • Main MCP tool handler for project_info: calls adapter, auto-deploys bridge scripts, formats and returns project information response
    case 'project_info': { const result = await this.adapter.getProjectInfo(); // Auto-deploy scripts if needed await this.autoDeployScripts(); return { content: [{ type: 'text', text: `Unity Project Information: Project Path: ${result.projectPath} Project Name: ${result.projectName || 'N/A'} Unity Version: ${result.unityVersion} Platform: ${result.platform} Is Playing: ${result.isPlaying} Render Pipeline: ${result.renderPipeline || 'Unknown'} Render Pipeline Version: ${result.renderPipelineVersion || 'N/A'}` }] }; }
  • Adapter method implementing project_info by calling Unity HTTP server 'project/info' endpoint
    async getProjectInfo(): Promise<any> { return this.call('project/info'); }

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/zabaglione/mcp-server-unity'

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