complete_omnifocus_task
Mark an OmniFocus task as complete to update your task list.
Instructions
Mark an OmniFocus task complete
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:42-43 (handler)The tool is listed in the TOOLS array but has no real implementation — the handler is a generic stub that returns a message to install Local MCP.
["complete_omnifocus_task", "Mark an OmniFocus task complete"], ["search_omnifocus_tasks", "Search OmniFocus tasks"], - server.js:106-109 (registration)All tools (including 'complete_omnifocus_task') are registered via a loop using server.tool() with an empty schema and a stub handler.
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" }], }));