Skip to main content
Glama

project_status

Verify Unity MCP server connectivity to ensure seamless interaction with Unity projects. Use this tool to test server status and maintain project workflow efficiency.

Instructions

Check Unity MCP server connection status (simple connectivity test only)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler implementation in executeTool switch statement. Checks Unity server connection using this.adapter.isConnected() and returns appropriate status message.
    case 'project_status': { const connected = await this.adapter.isConnected(); const status = connected ? 'Unity server is connected and ready' : 'Unity server is not connected or not responding'; return { content: [{ type: 'text', text: status }] }; }
  • Tool registration within the getTools() method's return array, including name, description, and input schema (empty object).
    { name: 'project_status', description: 'Check Unity MCP server connection status (simple connectivity test only)', inputSchema: { type: 'object', properties: {} } },
  • Input schema definition for project_status tool: empty object properties (no parameters required).
    inputSchema: { type: 'object', properties: {} }

Other Tools

Related Tools

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