Skip to main content
Glama

omnifocus_create_task

Add tasks to OmniFocus with details like notes, due dates, and flags. Optionally assign to a project or keep in inbox.

Instructions

Create a new task in OmniFocus. Detected version: standard

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesTask name (required)
noteNoTask note/description
dueDateNoDue date in ISO format (YYYY-MM-DD)
flaggedNoMark task as flagged
projectNoProject name to add task to (optional, defaults to inbox)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure, yet it only says 'Create a new task in OmniFocus.' It does not describe return values, side effects, permissions, failure modes, or behavior when optional fields like project are omitted. The 'Detected version: standard' note adds operational context but no behavioral transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short, front-loaded, and free of fluff. The 'Detected version: standard' sentence is somewhat expendable, but it is not misleading and does not significantly harm the conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple create-task operation, the schema plus clear purpose provide enough to invoke the tool correctly. However, the lack of any return-value or post-condition information, combined with no annotations and no output schema, leaves some behavioral context missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents all five parameters. The description itself adds no parameter-level meaning beyond what the schema already provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action ('Create') on a specific resource ('a new task in OmniFocus'), which unambiguously differentiates it from sibling tools like omnifocus_get_tasks, omnifocus_update_task, and omnifocus_complete_task.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit guidance about when to use this tool versus alternatives, but the creation semantics are strongly implied by the tool name and the clear action/resource phrasing. No misleading or contradictory guidance is present.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.