finder_search
Search files on your Mac using Spotlight to locate documents, applications, and folders. Query by name or content to retrieve specific file paths.
Instructions
Search files using Spotlight
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:58-58 (registration)Tool name 'finder_search' is defined in the TOOLS array with description 'Search files using Spotlight'
["finder_search", "Search files using Spotlight"], - server.js:82-86 (registration)Tool is registered with the MCP server using a generic loop that creates stub handlers for all tools
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:82-86 (handler)Stub handler for finder_search - returns static message indicating this is an inspection stub. Real implementation is in native macOS binary.
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" }], })); }