finder_list
List files in a Finder directory to browse and manage local files from your AI agent.
Instructions
List files in a Finder directory
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:60-60 (registration)The tool 'finder_list' is registered as part of the TOOLS array with description 'List files in a Finder directory'.
["finder_list", "List files in a Finder directory"], - server.js:106-110 (handler)The handler is a generic stub that iterates over all TOOLS (including finder_list) and registers each with an empty schema and a placeholder response.
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)The schema for finder_list is an empty object {} (no input parameters defined).
server.tool(name, desc, {}, async () => ({