Provides automation capabilities on macOS to interact with OmniFocus task management application.
OmniFocus MCP Server
A Model Context Protocol (MCP) server for integrating OmniFocus with Claude Desktop. This server provides Claude with access to your OmniFocus tasks and projects, enabling AI-powered task management and weekly reviews.
Features
🎯 OmniFocus Integration - Access tasks and projects from OmniFocus
🔧 Active Task Filtering - Get only uncompleted tasks, excluding templates and system items
🚀 TypeScript + MCP SDK - Type-safe and maintainable
🔒 Secure Automation - Uses official Omni Automation JavaScript API
📱 Claude Desktop Ready - Works seamlessly with Claude Desktop
Current Tools
omnifocus:get_all_tasks
Retrieve all tasks from OmniFocus with filtering options:
includeCompleted
(boolean) - Include completed tasks (default: false)limit
(number) - Maximum number of tasks to return (default: 100)
omnifocus:get_active_tasks
Retrieve only active (uncompleted) tasks, automatically filtering out:
Tasks from "Templates" folders
Tasks containing template placeholders (
«
,»
)Tasks with synced preferences markers (
⚙️
)
omnifocus:get_projects
Retrieve all active projects from OmniFocus.
Prerequisites
macOS with OmniFocus installed
Node.js 23.10.0 or higher
Claude Desktop application
Automation permissions for OmniFocus
Installation
Clone the repository:
git clone https://github.com/mdoel/omnifocus-mcp cd omnifocus-mcpInstall dependencies:
npm installBuild the project:
npm run buildConfigure Claude Desktop:
Add this to your Claude Desktop MCP configuration:
{ "mcpServers": { "omnifocus": { "command": "/path/to/omnifocus/run-server.sh", "args": [] } } }Important: Replace
/path/to/omnifocus/
with the actual path to your project directory.Grant automation permissions:
The first time you run the server, macOS will prompt you to grant automation permissions for OmniFocus. Click "Allow" when prompted.
Note: If you encounter permission issues, you may need to temporarily uncomment the
osascript
lines inrun-server.sh
to trigger the permission dialog. After granting permissions, comment those lines out again to avoid the dialog on every startup.Restart Claude Desktop to load the new MCP server.
Usage
Once configured, you can ask Claude to:
"Get all my active tasks from OmniFocus"
"Show me my projects"
"What tasks do I have for today?"
"Help me with my weekly review"
Architecture
Core Components
OmniFocusClient
- Handles communication with OmniFocus via Omni AutomationOmniFocusJXA
- Utility for building and executing JXA scriptsOmniFocusMCPServer
- Main MCP server implementation
Directory Structure
Development
Building
Testing
You can test the server locally:
Testing OmniFocus Automation
Test OmniFocus automation directly:
Troubleshooting
Server Connection Issues
If Claude Desktop can't connect to the server:
Check the script path in your Claude Desktop configuration
Verify permissions - ensure the
run-server.sh
script is executable:chmod +x run-server.shCheck Node.js installation - ensure Node.js 23.10.0+ is installed
Review logs - check Claude Desktop's MCP server logs for error messages
Permission Issues
If you get automation permission errors:
Open System Preferences > Security & Privacy > Privacy
Select Automation from the left sidebar
Find your terminal/shell and check OmniFocus
Restart your terminal and try again
OmniFocus Not Found
Ensure OmniFocus is installed and running
Verify the app name is "OmniFocus" (not "OmniFocus 3" or something similar)
Check that OmniFocus is not in the trash or disabled
Performance Issues
If the server is slow or times out:
The server may take time to process large OmniFocus databases
Consider using the
limit
parameter to reduce the number of tasks returnedEnsure OmniFocus is not performing other operations
Contributing
This project is designed to be extensible. To add new functionality:
Add new tools in the
src/omnifocus/
directoryUpdate the server to register new tools
Test thoroughly with your OmniFocus data
Submit a pull request with clear documentation
License
MIT License - see LICENSE file for details.
Support
For issues and questions:
Check the troubleshooting section above
Review the Claude Desktop MCP documentation
Open an issue in this repository
local-only server
The server can only run on the client's local machine because it depends on local resources.
A Model Context Protocol server that integrates OmniFocus with Claude Desktop, providing AI-powered access to tasks and projects for enhanced task management and weekly reviews.
- Features
- Current Tools
- Prerequisites
- Installation
- Usage
- Architecture
- Development
- Troubleshooting
- Contributing
- License
- Support
Related Resources
Related MCP Servers
- AsecurityAlicenseAqualityA Model Context Protocol server that allows Claude Desktop to manage and execute tasks in a queue-based system, supporting planning, execution, and completion phases.Last updated -103616MIT License
- AsecurityFlicenseAqualityA Model Context Protocol (MCP) server that integrates with OmniFocus to enable Claude (or other MCP-compatible AI assistants) to interact with your tasks and projects.Last updated -79786
- -securityFlicense-qualityA Model Context Protocol implementation that connects Claude Desktop with OmniFocus 4, enabling natural language task management through AI.