omniplan-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@omniplan-mcpcreate a milestone 'Launch' under the Deployment group"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-omniplan-jtr
Drive OmniPlan 4 on macOS from Claude (or any MCP-compatible LLM agent) using natural language.
Tell an agent "create a milestone called Beta Launch under the Deployment group, link it after the QA-complete task, and assign it to Alice." It does. The Gantt redraws.
20 tools across tasks, dependencies, resources, assignments, and project metadata. MIT-licensed. macOS only.
Lineage: this build is inspired by
xiahan4956/omniplan-mcp(MIT) — the originaljxa.pybridge is reused under MIT. The rest of the codebase was rebuilt from scratch (~86% of current LOC). It's distributed under a distinct PyPI name (mcp-omniplan-jtr) so as not to take the original author's namespace. SeeCHANGELOG.mdfor what changed.
What it does
You say | The agent calls | OmniPlan reflects |
"Show me incomplete tasks due this week" |
| filters the outline |
"Create a 4-hour task 'Refactor login' under Auth" |
| new row in the Gantt |
"Link 'Refactor login' before 'Run E2E'" |
| dependency arrow drawn |
"Assign Alice at 50%" |
| assignment chip on the bar |
"Mark Beta Launch as a milestone, color green" |
| diamond marker, green |
"Save the document" |
| written to disk |
Related MCP server: OmniFocus MCP Server
Requirements
macOS (any recent version)
OmniPlan 4 — installed and running with a document open. See "Supported OmniPlan versions" below for the matrix
Python 3.11+
Automation permission granted to your terminal / MCP host app (System Settings → Privacy & Security → Automation → enable OmniPlan)
Supported OmniPlan versions
This MCP is verified against the following builds. "Verified" = full pytest integration suite passes against that build inside a Tart macOS VM with OmniPlan running.
OmniPlan version | Build | All tools? | Verified | Notes |
4.10.3 test | v232.5.9 ( | ✅ All 22 tools | 2026-05-07 | Test build from https://omnistaging.omnigroup.com/omniplan/. Adds |
4.10.2 | 232.5.0 | ✅ Except | 2026-05-01 | Public release. The two move tools raise a clear "requires 4.10.3+" error; everything else works including all reads, writes, dependencies, resource assignments, and |
4.10.0–4.10.1 | (older 4.10.x patch builds) | Likely yes for non-move tools | Inferred (untested) | Should work — same omniJS surface as 4.10.2 for the tools we use, but not empirically verified |
4.9.x and older | — | Unknown | Untested | Not part of the supported matrix |
Reporting a version compatibility issue: if you find a build where a tool fails that the matrix says should work, please file an issue with the build number (visible in OmniPlan → About OmniPlan) and the tool name.
Install
Pick whichever you prefer:
# 1. Homebrew tap (Python deps bundled in an isolated venv; only python@3.13 comes from brew)
brew tap johntrandall/tap
brew install mcp-omniplan-jtr# 2. uv tool (recommended for the MCP ecosystem; installs from PyPI)
uv tool install mcp-omniplan-jtr# 3. pip (if you don't have uv)
pip install mcp-omniplan-jtrAll three install the mcp-omniplan-jtr command. Register it as an MCP server with whichever client you use:
Claude Code (CLI)
claude mcp add -s user omniplan-local mcp-omniplan-jtrThen restart Claude Code.
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"omniplan-local": {
"command": "mcp-omniplan-jtr"
}
}
}Then restart Claude Desktop.
First call — Automation permission
The first time the agent calls a tool, macOS may prompt for Automation access. Approve OmniPlan automation for your terminal or the app running the MCP server. If the prompt was missed, grant it manually:
System Settings → Privacy & Security → Automation — enable OmniPlan for your terminal or MCP host.
If denied, every tool returns a clear error: "macOS blocked Automation access to OmniPlan. Grant permission in System Settings > Privacy & Security > Automation."
Tools
Tool | What it does |
| List all currently open OmniPlan documents |
| Search and filter tasks by keyword, type, completion, color, or date range |
| Look up tasks by title; substring by default, exact opt-in |
| Get full details of a task by ID |
| Create a new task under a parent task or project root |
| Bulk-create many tasks in a single round-trip; supports intra-batch parent references |
| Update title, note, dates, completion, color, effort, three-point estimates, constraint dates |
| Reparent a task while preserving its uniqueID (so dependencies and assignments survive). Requires OmniPlan 4.10.3+ |
| Delete a task by ID |
| Link two tasks (FS / SS / FF / SF, optional lead time) |
| Remove the dependency between two tasks |
| List dependencies in the document (or filtered to one task) |
| Save the front document to disk |
| Project metadata: name, path, dates, scenarios |
| Update project-level fields (currently start date) |
| List all resources |
| Create a resource (staff / equipment / material / group) |
| Reparent a resource (across the resource group hierarchy) while preserving its uniqueID. Requires OmniPlan 4.10.3+ |
| Delete a resource by ID |
| Assign a resource to a task with optional units fraction |
| Remove a resource assignment from a task |
| List a task's resource assignments |
All tools accept an optional document_name parameter. If omitted, the frontmost open document is used.
Example prompts
"Show me all incomplete tasks due this week in my project."
"Create a milestone called 'Beta Launch' under the Deployment group, dependent on 'QA-complete', and assign it to Alice at 50%."
"Mark task 42 as complete and set its bar color to green."
"What tasks are assigned the red color?"
"List every resource and how much they're allocated across the project."
Limitations
A few small omniJS edges. Per-version availability is in the supported-versions matrix above; this section names what's currently outside the omniJS surface entirely.
Resource working hours are not editable through this MCP —
actual.rootResource.scheduleis opaque on the omniJS surface.Project currency (
actual.currency) is not writable — writes via omniJS don't persist across calls. Cost values themselves work; just not the currency unit.OmniPlan must be running with a document open. The MCP doesn't launch OmniPlan or open documents for you.
For per-release detail and verification status, see CHANGELOG.md.
For the full catalogue (and the mitigations), see dev-docs/omnijs-persistence-gaps.md.
For developers
If you want to extend, hack on, or contribute to this MCP:
Architecture & internals:
dev-docs/README-DEV.mdRoadmap & feature tiers:
dev-docs/ROADMAP.mdTesting policy:
dev-docs/testing-policy.mdVM provisioning for the pre-release test runner:
dev-docs/vm-provisioning.md
Related projects
Sibling OmniPlan tooling in the same workflow:
oplx-tools— Python toolkit for OmniPlan.oplxdocuments: generate, lint, parse. Useful when you want to build a Gantt from a database or CI pipeline rather than the GUI.oplx-format— Community-maintained file-format specification for.oplxdocuments (verified against OmniPlan 4.10.2). Reference doc that informed bothoplx-toolsand the e2e XML cross-checks in this MCP's test suite.
License
MIT. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/johntrandall/omniplan-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server