safari_click
Click an element in Safari browser to automate interactions.
Instructions
Click an element in Safari
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:106-110 (registration)Registration: 'safari_click' is registered as an MCP tool in the TOOLS array at line 90, and then registered via server.tool() in the loop at lines 106-110. This is a stub server that returns a placeholder message; the real implementation is in a native binary not present in this codebase.
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)Schema: The third argument to server.tool() is an empty object '{}', meaning the tool has no defined input schema parameters.
server.tool(name, desc, {}, async () => ({