Skip to main content
Glama

Delete folder

delete_folder
Destructive

Delete an OmniFocus folder and all projects it contains to clean up your task hierarchy.

Instructions

Delete an OmniFocus folder. WARNING: this also deletes all projects inside the folder.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
name_or_idYesFolder name or ID to delete. WARNING: deleting a folder deletes all projects inside it.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
metaNo
toolYes
successYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already mark destructiveHint=true, and the description adds meaningful detail beyond that by warning that all projects inside the folder will also be deleted. This is precisely the kind of behavioral context an agent needs before invoking a destructive operation.

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 and front-loads the core action, with the warning immediately following. Every sentence earns its place, though the first clause largely restates the title.

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?

For a single-parameter destructive tool with a complete schema and output schema, the description is sufficiently complete. The destructive warning covers the most important operational consequence, and no other missing context would prevent correct invocation.

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 parameter name_or_id is already fully documented. The description adds no additional parameter-level detail beyond repeating the warning, 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?

States a specific verb and resource ('Delete an OmniFocus folder') and immediately adds the critical destructive consequence. This clearly distinguishes it from other folder-related tools like create_folder, update_folder, and get_folder.

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 gives no guidance on when to use this tool versus alternatives such as remove_item or batch_remove_items. The intended use is implied by the name and first phrase, but there is no explicit context, prerequisites, or exclusions.

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