Skip to main content
Glama

Remove Label From Card

remove_label_from_card

Remove a label from a card by providing the card ID and label ID to detach it.

Instructions

Remove a label from a card.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cardIdYes
labelIdYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations supplied, the description carries the full behavioral burden. It only states the bare removal action and omits any context about irreversibility, whether the label must already exist, permissions, or response behavior. This is comparable to a mutation tool with no safety metadata and no caveats.

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 description is one short sentence, front-loaded with the verb and object, with no redundant wording. It is appropriately concise for the tool's simplicity, though it forfeits some detail that could have been added without much length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and an output schema exists, so return values need not be described. However, with no annotations and no usage or behavioral caveats, the description leaves the agent without guidance on preconditions, idempotency, or how this differs from related label/card operations.

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 has 0% property descriptions, so the description must compensate. It only maps 'label' and 'card' generally, but the parameter names cardId and labelId are self-explanatory and the action sentence gives enough context to infer their roles. It adds minimal value but is not misleading.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Remove') and a clear object/relationship ('a label from a card'), unambiguously identifying the operation. It does not explicitly distinguish itself from siblings like add_label_to_card, so it misses the top score.

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 usage context is provided: there is no mention of when to choose this operation over add_label_to_card or update_card, and no prerequisites or error conditions are given. The intended scenario is only loosely implied by the verb and resource names.

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