finder_list
List files and folders in any macOS Finder directory, enabling AI agents to browse local storage and view directory contents on your Mac.
Instructions
List files in a Finder directory
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:57-57 (registration)The finder_list tool is registered in the TOOLS array with its description. This is part of a list of all tools that the Pilot MCP server exposes for discovery.
["finder_list", "List files in a Finder directory"], - server.js:82-86 (handler)The handler function for finder_list (shared by all tools in this stub server). It returns a placeholder message indicating this is an inspection stub and directs users to install the actual Pilot MCP on macOS.
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 (schema)The schema for finder_list is an empty object {}, meaning this stub accepts no parameters. The actual implementation would likely accept parameters like directory path.
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" }], })); }