Skip to main content
Glama
fortin
by fortin

Manage notifications

manage_notifications

Control OmniFocus task alerts: list current reminders, add absolute or due-relative notifications, or remove them by ID.

Instructions

List, add, or remove task reminders (absolute or due-relative).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionNolist
task_idNo
task_nameNo
absolute_dateNoISO datetime for an absolute reminder.
notification_idNo
minutes_before_dueNoDue-relative reminder, in minutes before due.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior1/5

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

The description says the tool can 'remove task reminders', but annotations declare destructiveHint=false. Removing a reminder is a destructive operation, so the description contradicts the annotation. The description also fails to disclose side effects or whether removal is reversible.

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?

The description is one tight sentence with the core action words front-loaded and a compact parenthetical clarifying reminder modes. No words are wasted.

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

Completeness2/5

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

Even with an output schema, the description is too sparse for a multi-action tool with six parameters and no required fields. It does not specify parameter combinations per action, the difference between task_id and task_name, or how list/add/remove are invoked, and the destructiveHint contradiction further undermines safe use.

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

Parameters2/5

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

Schema description coverage is only 33% (absolute_date and minutes_before_due), and the description only echoes the absolute/due-relative distinction. It does not explain how task_id, task_name, and notification_id relate to each action, nor which parameters are required for add versus remove. This leaves substantial ambiguity for a six-parameter tool.

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 states a clear verb set ('List, add, or remove') and a specific resource ('task reminders'), with the useful distinction of 'absolute or due-relative'. An agent can identify the tool's job and tell it apart from sibling tools like manage_tag or manage_perspective.

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

Usage Guidelines2/5

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

The description does not say when to use this tool over siblings such as query_tasks, add_task, or manage_perspective, and it gives no exclusions or prerequisites. The usage context is only implied by the tool's name and purpose.

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