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
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/unity-mcp-tools.ts:195-202 (registration)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: {} } },
- src/tools/unity-mcp-tools.ts:420-439 (handler)Main MCP tool handler for project_info: calls adapter, auto-deploys bridge scripts, formats and returns project information responsecase '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' endpointasync getProjectInfo(): Promise<any> { return this.call('project/info'); }