Skip to main content
Glama
fortin
by fortin

Create project from outline

create_project_from_outline

Turn a confirmed outline into a verified OmniFocus project tree with up to 200 tasks and 8 levels. Automatically rolls back with Undo if creation fails.

Instructions

Create one verified project tree from a user-confirmed outline. Rolls back with Undo on failure.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectYesConfirmed project tree: name, optional folderId/tagIds/sequential, and tasks with nested children. Max 200 tasks and 8 levels.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark this as non-read-only and non-idempotent, so the description's 'Create' aligns with them. It adds meaningful behavioral context by stating that failures are rolled back via Undo, which is useful for an agent assessing side effects.

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?

Two short sentences, with the core action and prerequisite front-loaded and the failure behavior in the second sentence. No filler or repetition of schema content.

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

Completeness5/5

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

The description is complete enough for a creation tool: it states what is created, from what input, and what happens on failure. The output schema is present, so return-value documentation is not required.

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%, and the schema already explains the project object, nested tasks, limits, and optional fields. The description provides no additional parameter-level detail, which is acceptable given the schema's completeness.

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 uses a specific verb and resource: 'Create one verified project tree from a user-confirmed outline.' It clearly distinguishes the tool from sibling creators like add_project or add_items by emphasizing a full project tree sourced from a confirmed outline.

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 phrase 'from a user-confirmed outline' gives clear context for when this tool is appropriate. It does not explicitly exclude alternatives like add_project, but it strongly implies the distinguishing prerequisite without being vague.

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