Skip to main content
Glama

add_field

Fuegt einem bestehenden Tracker ein neues Feld hinzu (bestehende Eintraege bleiben erhalten).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
maxNoNur bei type=rating (2-10)
typeYes
labelYes
optionsNoNur bei type=select
requiredNo
tracker_idYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It adds one important behavioral fact: 'bestehende Eintraege bleiben erhalten' (existing entries remain). However, it omits other potential side effects, such as whether the new field is applied to all existing entries or whether the operation is reversible.

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 a single, efficient sentence that wastes no words. It front-loads the core action and resource, and adds a parenthetical safety note without bloating the text.

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

Completeness2/5

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

With 6 parameters, no output schema, and conditional param requirements (e.g., max only for rating, options only for select), the description is too minimal to provide full context. It does not explain the conditional behavior, return format, or how existing entries are affected beyond preservation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 33%, with only 'max' and 'options' having descriptions. The description adds no parameter-specific meaning, leaving key parameters like 'label', 'type', 'required', and 'tracker_id' unexplained. Since the description fails to compensate for the low schema coverage, the semantic burden is unmet.

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 'Fuegt einem bestehenden Tracker ein neues Feld hinzu' clearly states the action (adding), the resource (existing tracker), and the object (new field). It distinguishes itself from sibling tools like add_column by explicitly targeting trackers.

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 implies a clear use case: when adding a field to an existing tracker. It does not explicitly mention alternatives or exclusions, but the context is clear enough that an agent would know when to select this tool over siblings like add_entry or add_column.

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.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool targets a distinct resource and action (board, column, card, tracker, field, entry) with no overlapping purposes. Even closely related operations like add_card vs add_entry operate on different entity types.

Naming Consistency4/5

Tool names consistently follow a verb_noun pattern (e.g., create_board, add_card, delete_entry, update_tracker). The mix of 'create' for top-level entities and 'add' for sub-entities is a minor deviation but still predictable.

Tool Count4/5

24 tools is somewhat high but well-justified given the server covers two resource families (boards and trackers) with full lifecycle operations. Each tool has a clear role in the overall surface.

Completeness4/5

The tool set provides comprehensive CRUD coverage for boards, columns, cards, trackers, and entries. The main gap is the lack of an update_field tool, but this can be worked around by deleting and recreating fields.

Resources