Skip to main content
Glama

tempo_create_team

Destructive

Create a new Tempo team after user confirmation. Use a confirmation prompt or a two-step token to ensure the team is only created once explicitly approved.

Instructions

Create a new Tempo team. 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
nameYesTeam name
summaryNoShort description of the team
programIdNoId of the program this team belongs to
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.
leadAccountIdNoAtlassian account id of the team lead

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.1

TDQS

A4.3/5.0
Behavior5/5

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

The description discloses a complete confirmation protocol not visible in the annotations: client-supported prompt first, otherwise a preview plus confirmToken on the first call, followed by a repeat call with the same arguments only after explicit user approval. This goes well beyond the readOnlyHint=false/destructiveHint=true signal. The destructiveHint label is semantically loose for a create operation, but the description's confirmation-first behavior is compatible with it, so there is no contradiction.

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 purpose is front-loaded in a short first sentence, and the second sentence packs the entire confirmation fallback into a few clauses. It is somewhat dense and parenthetical, but no sentence is wasted.

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 5-parameter create tool with no output schema, the description explains the essential interaction: confirmation, preview, and token-based second call. It does not describe the success response shape or the contents of the preview, but the reference to MCP_CONFIRM_MODE and the schema's confirmToken field cover the main invocation requirements.

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 input schema documents all five parameters at 100% coverage, including a detailed confirmToken description. The tool description adds process-level context about confirmToken usage but no parameter-specific meaning beyond the schema, so the baseline of 3 applies.

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 opens with the specific verb-resource pair 'Create a new Tempo team,' which clearly identifies the action and target. This distinguishes it from sibling creation tools like tempo_create_worklog, tempo_create_plan, and tempo_create_account solely by the resource type, even without naming them.

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 first sentence explicitly states the trigger: creating a new Tempo team. It does not enumerate when-not-to-use conditions or alternatives, and the confirmation flow is operational context rather than usage guidance, but the purpose is clear enough to select this tool among the create_* siblings.

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