Skip to main content
Glama

tempo_create_plan

Destructive

Create a Tempo plan to allocate a user or generic resource to an issue or project for specified dates, with optional recurrence and effort settings. Confirmation is required before the plan is saved.

Instructions

Create a new Tempo plan (resource allocation) for a user or generic resource against an issue or project. Asks the user to confirm first: a confirmation prompt where the client supports one; otherwise the first call returns a preview and a confirmToken, and only a repeat call with that token proceeds (see MCP_CONFIRM_MODE).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ruleNoRecurrence rule
endDateYesPlan end date (YYYY-MM-DD)
startDateYesPlan start date (YYYY-MM-DD)
startTimeNoStart time (HH:mm)
assigneeIdYesAtlassian account id (for USER) or generic resource id (for GENERIC)
planItemIdYesId of the issue or project to plan against
descriptionNoPlan description
assigneeTypeYesType of assignee
confirmTokenNoONLY for the two-step confirmation fallback (a client without MCP elicitation). The confirmToken from this same tool's phase-1 "confirmation-required" response, passed back ONLY after the user has seen that preview and explicitly approved it in chat — never on the first call, never invented, never reused. Call again with the same arguments. Ignored when the client supports elicitation.
planItemTypeYesType of plan item
plannedSecondsNoTotal seconds planned (for TOTAL_SECONDS persistence type)
recurrenceEndDateNoEnd date for recurrence (YYYY-MM-DD)
plannedSecondsPerDayNoSeconds planned per day (for SECONDS_PER_DAY persistence type)
effortPersistenceTypeNoHow effort is distributed
includeNonWorkingDaysNoInclude non-working days in plan

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.1

TDQS

A4.4/5.0
Behavior5/5

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

Beyond the annotations (readOnlyHint=false, destructiveHint=true), the description discloses a significant behavioral trait: the tool requires user confirmation, and in non-elicitation environments the first call returns a preview and confirmToken rather than executing. This is exactly the kind of behavioral context an agent needs to avoid prematurely 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.

Conciseness5/5

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

Two sentences deliver the core purpose, the confirmation behavior, the fallback mechanism, and the confirmToken repeat-call rule. Every clause earns its place and the most important behavioral caveat is front-loaded.

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?

With 15 parameters, 100% schema coverage, and no output schema, the description covers the essential operational flow well: confirmation, preview, and confirmToken handling. It does not describe the success response shape, but the confirmation behavior is the critical missing piece that the description supplies, making it sufficiently complete for an agent to invoke the tool correctly.

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?

The schema already documents all 15 parameters with 100% coverage, so the baseline is 3. The description adds a little semantic framing by tying 'user or generic resource' to assignee types and 'issue or project' to plan item types, but it does not add detail beyond what the schema already provides for individual parameters.

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 specific verb ('Create'), a specific resource ('a new Tempo plan'), and the planning context ('resource allocation for a user or generic resource against an issue or project'). It clearly distinguishes this from worklog creation and from tempo_update_plan by framing it as creating a plan rather than modifying one.

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 provides clear context for when this tool is used: when a new plan needs to be created. It also gives crucial operational guidance about the confirmation flow, including the two-step fallback with confirmToken. It does not explicitly name alternatives like tempo_update_plan, but the 'Create a new' framing makes the usage context unambiguous.

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