list_omnifocus_projects
Retrieve all OmniFocus projects to review task organization, track progress, and enable AI agents to manage your work.
Instructions
List OmniFocus projects
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:82-86 (registration)Tool registration in a loop - registers 'list_omnifocus_projects' along with all other tools using server.tool()
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:83-85 (handler)Handler function for list_omnifocus_projects (and all other tools) - returns a stub message indicating this is an inspection stub
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:40-40 (schema)Tool entry in TOOLS array defining the name and description - parameters schema is empty object {} (no inputs required)
["list_omnifocus_projects", "List OmniFocus projects"],