by jqlts1
Boost productivity on Mac with OmniFocus Enhanced—manage tasks, projects, and workflows in one powerful macOS productivi
Integrates with OmniFocus on macOS through AppleScript to manage tasks, projects, perspectives, and tags. Enables AI assistants to fully control your OmniFocus workflow with hierarchical task views and batch operations.
OmniFocus Enhanced is a community-built MCP server published by jqlts1 that provides AI assistants with tools and capabilities via the Model Context Protocol. Boost productivity on Mac with OmniFocus Enhanced—manage tasks, projects, and workflows in one powerful macOS productivi It is categorized under productivity.
You can install OmniFocus Enhanced in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
OmniFocus Enhanced is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
OmniFocus Enhanced reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
OmniFocus Enhanced is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated OmniFocus Enhanced against two servers with overlapping tools; this profile had the clearer scope statement.
We evaluated OmniFocus Enhanced against two servers with overlapping tools; this profile had the clearer scope statement.
Useful MCP listing: OmniFocus Enhanced is the kind of server we cite when onboarding engineers to host + tool permissions.
Useful MCP listing: OmniFocus Enhanced is the kind of server we cite when onboarding engineers to host + tool permissions.
We wired OmniFocus Enhanced into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We wired OmniFocus Enhanced into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
OmniFocus Enhanced is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
OmniFocus Enhanced reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 50
🌟 NEW: Native Custom Perspective Access with Hierarchical Display!
<a href="https://glama.ai/mcp/servers/@jqlts1/omnifocus-mcp-enhanced"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@jqlts1/omnifocus-mcp-enhanced/badge" alt="OmniFocus Enhanced MCP server" /> </a>Transform OmniFocus into an AI-powered productivity powerhouse with custom perspective support
Enhanced Model Context Protocol (MCP) server for OmniFocus featuring native custom perspective access, hierarchical task display, AI-optimized tool selection, and comprehensive task management. Perfect integration with Claude AI for intelligent workflows.
move_task and edit_item (newProjectId/newProjectName/newParentTaskId/newParentTaskName/moveToInbox) with duplicate-name protection and cycle-prevention checks.plannedDate/newPlannedDate and updated task displays.Perspective.Custom API# One-line installation
claude mcp add omnifocus-enhanced -- npx -y omnifocus-mcp-enhanced
# Upgrade to latest
npm install -g omnifocus-mcp-enhanced@latest
# Global installation
npm install -g omnifocus-mcp-enhanced
claude mcp add omnifocus-enhanced -- omnifocus-mcp-enhanced
# Local project installation
git clone https://github.com/jqlts1/omnifocus-mcp-enhanced.git
cd omnifocus-mcp-enhanced
npm install && npm run build
claude mcp add omnifocus-enhanced -- node "/path/to/omnifocus-mcp-enhanced/dist/server.js"
Create complex task hierarchies with ease:
// Create subtask by parent task name
{
"name": "Analyze competitor keywords",
"parentTaskName": "SEO Strategy",
"note": "Focus on top 10 competitors",
"dueDate": "2025-01-15",
"estimatedMinutes": 120,
"tags": ["SEO", "Research"]
}
// Create subtask by parent task ID
{
"name": "Write content outline",
"parentTaskId": "loK2xEAY4H1",
"flagged": true,
"estimatedMinutes": 60
}
Access all major OmniFocus perspectives programmatically:
# Inbox perspective
get_inbox_tasks {"hideCompleted": true}
# Flagged tasks
get_flagged_tasks {"projectFilter": "SEO Project"}
# Forecast (next 7 days)
get_forecast_tasks {"days": 7, "hideCompleted": true}
# Tasks by tag
get_tasks_by_tag {"tagName": "AI", "exactMatch": false}
Create any perspective imaginable with advanced filtering:
# Time management view (30min tasks due this week)
filter_tasks {
"taskStatus": ["Available", "Next"],
"estimateMax": 30,
"dueThisWeek": true
}
# Deep work view (60+ minute tasks with notes)
filter_tasks {
"estimateMin": 60,
"hasNote": true,
"taskStatus": ["Available"]
}
# Planned work view (tasks planned for today)
filter_tasks {
"plannedToday": true,
"sortBy": "plannedDate"
}
# Project overdue tasks
filter_tasks {
"projectFilter": "Website Redesign",
"taskStatus": ["Overdue", "DueSoon"]
}
Access your OmniFocus custom perspectives with hierarchical task display:
# 🌟 NEW: List all your custom perspectives
list_custom_perspectives {"format": "detailed"}
# 🌳 NEW: Project tree view (default)
get_custom_perspective_tasks {
"perspectiveName": "今日工作安排", # Your custom perspective name
"displayMode": "project_tree", # project_tree | task_tree | flat
"hideCompleted": true
}
# Global task tree (legacy showHierarchy=true equivalent)
get_custom_perspective_tasks {
"perspectiveName": "Today Review",
"displayMode": "task_tree"
}
# Flat list (legacy groupByProject=false equivalent)
get_custom_perspective_tasks {
"perspectiveName": "Weekly Planning",
"displayMode": "flat"
}
Why This Is Powerful:
Perspective.Custom API directly#tags in tree outputEfficiently manage multiple tasks:
{
"items": [
{
"type": "task",
"name": "Website Technical SEO",
"projectName": "SEO Project",
"note": "Optimize technical aspects"
},
{
"type": "task",
"name": "Page Speed Optimization",
"parentTaskName": "Website Technical SEO",
"estimatedMinutes": 180,
"flagged": true
},
{
"type": "task",
"name": "Mobile Responsiveness",
"parentTaskName": "Website Technical SEO",
"estimatedMinutes": 90
}
]
}
Batch move feature roadmap (future): docs/roadmap/2026-02-25-batch-move-tasks-plan.md
# Simple task
add_omnifocus_task {
"name": "Review quarterly goals",
"projectName": "Planning",
"dueDate": "2025-01-31",
"plannedDate": "2025-01-28"
}
# Create parent task
add_omnifocus_task {
"name": "Launch Product Campaign",
"projectName": "Marketing",
"dueDate": "2025-02-15",
"tags": ["Campaign", "Priority"]
}
# Add subtasks
add_omnifocus_task {
"name": "Design landing page",
"parentTaskName": "Launch Product Campaign",
"estimatedMinutes": 240,
"flagged": true
}
# Move task to a project
move_task {
"id": "task-id-123",
"targetProjectName": "Planning"
}
# Move task under another task
move_task {
"id": "task-id-123",
"targetParentTaskId": "parent-task-id-456"
}
# Move task back to inbox
move_task {
"id": "task-id-123",
"targetInbox": true
}
Task move safety rules:
You can also move with edit_item and combine move + field updates:
edit_item {
"itemType": "task",
"id": "task-id-123",
"newProjectName": "Planning",
"newName": "Review tmux workflow",
"newFlagged": true
}
# Find high-priority work
filter_tasks {
"flagged": true,
"taskStatus": ["Available"],
"estimateMax": 120,
"hasEstimate": true
}
# Today's completed work
filter_tasks {
---
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.