list_safari_bookmarks
List all Safari bookmarks on your Mac. Access your saved web links for better organization.
Instructions
List Safari bookmarks
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:93-93 (registration)Tool is registered under the name 'list_safari_bookmarks' with description 'List Safari bookmarks' in the TOOLS array.
["list_safari_bookmarks", "List Safari bookmarks"], - server.js:106-110 (handler)The handler for 'list_safari_bookmarks' (and all other tools) is a stub that returns an inspection placeholder message. The real implementation is in a native 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" }], })); }