Skip to main content
Glama

delete_column

Delete a column from a Favro board, permanently removing all cards within it. Specify column by ID or name.

Instructions

Delete a column from a board.

Warning: This will also delete all cards in the column!

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardNoBoard ID or name (required for name lookup)
columnYesColumn ID or name

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.7.2
  2. Removedv0.7.0
  3. Changed3 schema fields changedv0.3.2
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / properties / board / description
      Added value: +"Board ID or name (required for name lookup)"
    • addedInput schema / properties / column / description
      Added value: +"Column ID or name"
  4. First observedv0.5.0

TDQS

A3.8/5.0
Behavior4/5

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

Explicitly warns that deleting a column also deletes all cards in it, which is critical behavioral context not inferable from the name. However, it doesn't mention irreversibility or permission requirements, so it's not fully comprehensive.

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 front-load the purpose and then the important warning. No superfluous content, and the structure is efficient.

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?

Covers the key destructive side effect, which is essential for an agent to understand the consequences. Lacks note about irreversibility or confirmation steps, but given the output schema exists and the warning is clear, it's fairly complete for a destructive action.

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 already describes both parameters with meanings (board/column ID or name), including the note that board is required for name lookup. The description adds no new parameter semantics beyond what the schema 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?

States the exact action (delete) and resource (column from a board). This clearly differentiates from siblings like rename_column and move_column, and the warning about cards makes the scope unmistakable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like delete_card or archive column. No mention of exclusions or prerequisites beyond the schema's note on name lookup.

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