Skip to main content
Glama

tempo_create_account

Destructive

Create a new Tempo account by providing a unique key and account name. Requires user confirmation before the account is created.

Instructions

Create a new Tempo account. 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
keyYesUnique account key
nameYesAccount name
statusNoAccount status (default OPEN)
categoryKeyNoAccount category key
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 account lead
monthlyBudgetNoMonthly budget in seconds
contactAccountIdNoAtlassian account id of the contact person
externalContactNameNoName of external contact

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.2.1

TDQS

A4.2/5.0
Behavior4/5

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

The description meaningfully explains the confirmation flow: a native confirmation prompt where supported, otherwise a two-phase preview/confirmToken fallback. This goes beyond the annotations, which only indicate mutation/destructive potential, and gives the agent critical interaction context.

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 carry the full purpose and the non-obvious confirmation behavior. The content is front-loaded and every word earns its place; no filler or repetition.

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?

The description is complete for selection and invocation: it states the action, covers the confirmation behavior, and the schema covers all 9 parameters and their constraints. The only minor gap is that it does not describe the final success response, but with no output schema this is a small omission.

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 documents every parameter, including confirmToken's special role. The description adds a useful high-level view of the confirmation flow but does not add new per-parameter meaning beyond what the schema already provides.

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 'Create a new Tempo account,' which names a specific verb and resource. This clearly distinguishes the tool from siblings like tempo_update_account and tempo_delete_account, leaving no ambiguity about what the tool does.

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 the intended use evident: use this tool when creating a new Tempo account. It does not explicitly name alternative tools or exclusion conditions, but the verb 'create' plus the sibling set gives clear contextual guidance.

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