Skip to main content
Glama

Create tag

create_tag

Create an OmniFocus tag, optionally nested under a parent, using an idempotency key to avoid duplicate entries.

Instructions

Create a new tag in OmniFocus, optionally nested under a parent tag

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName for the new tag
parentNoParent tag name or ID (creates at top level if omitted)
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

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false and destructiveHint=false, so the mutating but non-destructive nature is covered. The description adds a useful behavioral detail about optional parent nesting, but does not disclose behaviors like duplicate-name handling or side effects beyond creation.

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, front-loaded sentence that immediately states the verb, resource, domain, and the key optional behavior. There is no filler or repetition of schema details.

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?

Given the low parameter count, full schema coverage, annotations, and an output schema, the description is nearly sufficient. It could add a note about duplicate names or explicit alternatives, but nothing essential is missing for a basic create operation.

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 already fully documents name, parent, and idempotencyKey semantics. The description's phrase 'optionally nested under a parent tag' paraphrases the parent parameter but adds little 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?

The description names a specific action ('Create'), a specific resource ('a new tag'), and the domain ('in OmniFocus'), plus the optional nesting behavior. This clearly distinguishes it from siblings like update_tag, delete_tag, and list_tags.

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

Usage Guidelines4/5

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

The description makes it obvious when to use this tool: when creating a tag, including an optional parent for nesting. It does not explicitly say 'use update_tag for modifications', but the verb choice and context provide clear guidance without ambiguity.

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