run_diagnostics
Check the status of all integrated macOS services to quickly identify and resolve connectivity problems.
Instructions
Run diagnostic checks on all services
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:101-101 (registration)The tool 'run_diagnostics' is registered in the TOOLS array with description 'Run diagnostic checks on all services'.
["run_diagnostics", "Run diagnostic checks on all services"], - server.js:106-110 (handler)The generic stub handler serves all tools including 'run_diagnostics', returning a message prompting installation of the real Local MCP binary.
for (const [name, desc] of TOOLS) { server.tool(name, desc, {}, async () => ({ content: [{ type: "text", text: "This is an inspection stub. Install Local MCP: npx -y local-mcp@latest setup" }], })); }