Skip to main content
Glama

Delete a card

delete_card
DestructiveIdempotent

Permanently delete a card from a board. This cannot be undone.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
card_idYesCard id from list_cards.
board_idYesThe board UUID, or the board URL the user shared. Never invent one.
passwordNoThe board password, if the board is protected.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false. The description adds the irreversibility context ('cannot be undone'), which is valuable behavioral information beyond what the annotations provide.

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?

The description is two short sentences, front-loaded with the core action and permanence. Every word earns its place, with no redundant filler.

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?

For a simple single-object deletion tool, the description plus annotations and schema fully cover the necessary context. No output schema is expected, and the irreversibility warning is sufficient.

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%, with each parameter already well-described (e.g., 'Card id from list_cards', 'Never invent one'). The description adds no new parameter-level meaning, so it meets the baseline for schema-complete tools.

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 clearly states the verb ('delete'), the resource ('a card'), and the scope ('from a board'). It distinguishes this tool from siblings like create_card, update_card, and move_card by specifying permanent removal.

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 usage context obvious: use this when you want to permanently remove a card. It does not explicitly mention alternatives or when-not-to-use, but the purpose is unambiguous given the sibling tool set.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.