lmcp_state
Check the health of the LMCP environment to diagnose issues with AI agent connections to macOS native apps.
Instructions
LMCP environment health snapshot
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:100-100 (registration)The tool 'lmcp_state' is registered in the TOOLS array at line 100 with description 'LMCP environment health snapshot'.
["lmcp_state", "LMCP environment health snapshot"], - server.js:106-110 (handler)Generic handler assigned to all tools including lmcp_state. It returns a stub message indicating this is an inspection stub and directing to install Local MCP.
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" }], })); } - server.js:107-107 (schema)Empty schema object '{}' is passed as the input schema for all tools including lmcp_state, meaning no parameters are accepted.
server.tool(name, desc, {}, async () => ({