Skip to main content
Glama

Add notification

add_notification

Set a reminder on any OmniFocus task using an absolute date/time or a relative offset before its due date.

Instructions

Add a notification (reminder) to a task — absolute date or relative to due date

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoWhen the notification fires — required for absolute notifications. Bare 'YYYY-MM-DD' is interpreted as LOCAL midnight on that calendar day; add a time and offset (e.g. 2026-03-05T09:00:00-06:00) to pin an exact moment.
typeYesNotification type: 'absolute' for a specific date/time, 'relative' for minutes before due date
taskIdNoThe ID of the task
taskNameNoThe name of the task (alternative to taskId)
minutesBeforeNoMinutes before the due date for relative notifications (e.g. 30 for 30 minutes before). Requires the task to have a due date.
idempotencyKeyNoStable request key for this create. Reuse identical arguments to replay its result across clients; an uncertain earlier attempt is never repeated.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
metaNo
toolYes
successYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already carry the safety profile (readOnlyHint=false confirming a write, destructiveHint=false). The description adds the mode distinction but little else about behavior — no side effects, no mention of what happens when a relative notification is set on a task without a due date, and no duplicate/replay semantics beyond what the idempotencyKey schema text already provides.

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

Conciseness5/5

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

A single sentence with the verb and resource front-loaded and the mode distinction appended via em-dash. Every word earns its place; zero filler or redundancy.

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

Completeness4/5

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

The schema (100% coverage, detailed semantics) and output schema carry substantial load, so the short description suffices for the core operation and timing modes. Minor gaps: it does not note that a task must be identified via taskId or taskName, and does not point to sibling lifecycle tools (list_notifications, remove_notification).

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 coverage is 100% with rich parameter descriptions (date interpretation rules, enum semantics, idempotency replay behavior, due-date requirement for minutesBefore). Per the rubric, baseline 3 applies; the description only restates the absolute/relative distinction already encoded in the type enum, adding no parameter-level meaning beyond the schema.

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?

States a specific verb ('Add') and resource ('notification (reminder) to a task'), plus the two timing modes (absolute date or relative to due date). The verb 'add' clearly differentiates it from sibling tools list_notifications and remove_notification, so an agent can distinguish them without opening schemas.

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?

Usage is implied — use this when attaching a reminder to a task, choosing between absolute and relative timing. However, the description gives no explicit when-to-use/when-not-to-use guidance and does not route to alternatives such as list_notifications or remove_notification for managing existing notifications.

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