diagnose
Run system checks to identify connectivity issues across connected macOS services including Mail, Calendar, Safari, Microsoft Office, and other native apps integrated through Pilot MCP.
Instructions
Run diagnostic checks on all connected services
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:76-76 (registration)Tool 'diagnose' listed in TOOLS array with description 'Run diagnostic checks on all connected services'
["diagnose", "Run diagnostic checks on all connected services"], - server.js:82-86 (registration)Tool registration loop that registers 'diagnose' along with all other tools with the MCP server
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Pilot MCP on macOS: npx -y local-mcp@latest setup" }], })); } - server.js:83-85 (handler)Handler function for 'diagnose' tool (and all tools) - returns a stub response indicating this is an inspection stub
server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Pilot MCP on macOS: npx -y local-mcp@latest setup" }], }));