Full CRUD MCP server for OmniFocus via Omni Automation — tasks, projects, folders, tags, recurrence.
{
"mcpServers": {
"io-github-steveardis-omnifocus": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Full CRUD MCP server for OmniFocus via Omni Automation — tasks, projects, folders, tags, recurrence.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Commit history unknown.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
MCP Security Weekly
Get CVE alerts and security updates for io.github.steveardis/omnifocus and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server for OmniFocus that exposes the full Omni Automation JavaScript API to LLM callers.
macOS only. Requires OmniFocus running on the same machine. The entire implementation runs OmniJS snippets inside OmniFocus via osascript -l JavaScript — no AppleScript string generation, no scripting dictionary limitations.
The package is published to npm as @scardis/omnifocus-mcp.
Add to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"omnifocus": {
"command": "npx",
"args": ["-y", "@scardis/omnifocus-mcp"]
}
}
}
git clone https://github.com/steveardis/omnifocus-mcp.git
cd omnifocus-mcp
npm install
npm run build
Then configure your MCP client:
{
"mcpServers": {
"omnifocus": {
"command": "node",
"args": ["/absolute/path/to/omnifocus-mcp/dist/server.js"]
}
}
}
| Tool | Description |
|---|---|
list_projects | Projects with optional filtering by status, folderId, flagged. Default excludes done/dropped. Limit (default 100). |
get_project | Full project detail by stable ID |
list_tasks | Tasks scoped by projectId, folderId, inbox: true, or all: true with optional status/tag/due/flagged filters. Limit (default 200). |
get_task | Full task detail by stable ID — includes defer/planned/due dates, tags, repetition rule, parentTaskId |
list_folders | Folders with optional status filter. Limit (default 200). |
get_folder | Full folder detail by stable ID, including child folder and project IDs |
list_tags | Tags with optional status filter. Limit (default 200). |
get_tag | Full tag detail by stable ID, including child tag IDs |
resolve_name | Resolve a name to stable ID candidates — never silently disambiguates; returns all matches |
| Tool | Description |
|---|---|
create_task | Create a task in inbox, project, or as subtask. Supports defer/planned/due dates, tags, flagged, estimated minutes, and repetition rules. |
edit_task | Edit any task field. Pass null to clear dates or repetition. Omitted fields are unchanged. |
complete_task | Mark a task complete |
drop_task | Mark a task dropped |
delete_task | Permanently delete a task and all subtasks |
create_project | Create a project, optionally in a folder. Supports type, status, review interval, tags. |
edit_project | Edit project fields |
complete_project | Mark a project complete |
drop_project | Mark a project dropped |
delete_project | Permanently delete a project and all its tasks |
create_folder | Create a folder, optionally nested |
edit_folder | Rename a folder |
delete_folder | Permanently delete a folder and entire subtree |
create_tag | Create a tag, optionally nested |
edit_tag | Edit tag name or status |
delete_tag | Permanently delete a tag and child tags |
move_task | Move a task to a project or make it a subtask of another task |
move_project | Move a project to a folder or to top level |
Every entity returned by this server includes a stable id field (id.primaryKey from OmniFocus). Use this ID in subsequent calls rather than names. Names can be ambiguous; IDs are not.
If you have a name but not an ID, use resolve_name. It returns a list — if multiple candidates are returned, inspect the path field and ask the user to disambiguate before proceeding with any write operation.
Two notable alternatives exist: themotionmachine/OmniFocus-MCP and [jqlts1/omni