Skip to main content
Glama

create_tracker

Legt einen neuen Tracker mit frei definierbaren Feldern an. Erlaubte Feldtypen: text, number, date, datetime, checkbox, select, rating, textarea. Bei type=select gehoert eine Liste "options" dazu; bei type=rating optional "max" (2-10, Standard 5).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iconNoOptional: ein Emoji, Standard đź“‹
nameYesName des Trackers, z.B. "Wasser trinken"
fieldsYesDie Felder des Trackers (mind. 1).

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the behavior of field validation (allowed types and options/rating rules) but doesn't mention any side effects, permissions, or return behavior. Since it's a create operation, the action itself is transparent, but additional behavior like idempotency or error handling is not addressed.

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 sentences, front-loaded with the main purpose, and the second sentence adds necessary details about field types and conditions. No fluff, every sentence contributes to the definition.

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?

For a create tool with a rich schema, the description covers the essential aspects: what it does, the allowable field types, and conditional parameters. It doesn't explain return values, but no output schema exists; and since the schema is detailed, the description is adequately complete for an agent to invoke it correctly.

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 coverage is 100% and the description largely repeats the schema's parameter information (field types, options, max). The only added detail is the default of 5 for rating's max, which is not in the schema. This small extra bump justifies a score just above the baseline, but since most param semantics come from the schema, a 3 is appropriate.

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 tool's purpose with a specific verb ('legt an') and resource ('neuen Tracker'), and distinguishes it from siblings like create_board and add_field by focusing on the tracker creation with fields. It also gives a clear scope of what's included (frei definierbare Felder) and lists the allowed field types.

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 the usage context: it's for creating a new tracker with custom fields, and provides details on field type constraints which guide when to use it for certain field configurations. It doesn't explicitly contrast with create_board or add_field, but the resource name and wording make the intended use clear, so the context is evident.

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