Skip to main content
Glama
lazyants

transkribus-mcp-server

by lazyants

Get Training Data

transkribus_recog_get_train_data
Read-onlyIdempotent

Fetch training data for a recognition model using its collection ID and model ID, with optional index and result count controls.

Instructions

Get the training data for a recognition model.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesResource ID
indexNoStart index (0-based)
collIdYesCollection ID
nValuesNoNumber of results (-1 for all)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changedv4.0.0
    • changedInput schema / properties / index / description
      Previous value: -"Start index"New value: +"Start index (0-based)"
    • changedInput schema / properties / index / minimum
      Previous value: --9007199254740991New value: +0
    • changedInput schema / properties / nValues / description
      Previous value: -"Number of values"New value: +"Number of results (-1 for all)"
  2. First observedv2.1.1

TDQS

C2.6/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so safety is covered. The description adds no behavioral context beyond that - it doesn't mention that results are paginated (index/nValues), whether collId must be a recognition collection, or what the returned training data looks like. With annotations doing the safety work, the remaining gaps are notable.

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?

A single front-loaded sentence with no wasteful text. It is efficient, though arguably under-specified rather than genuinely concise.

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?

For a read tool with no output schema, the description should at least hint at what training data is returned and how pagination behaves. Given a crowded sibling namespace of similarly named 'train data' tools, the description is too thin to let an agent call this correctly with confidence.

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% - all four parameters (id, collId, index, nValues) are documented in the schema with defaults and constraints. The description adds no parameter meaning, so the baseline 3 applies; the schema carries the full burden.

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

Purpose3/5

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

States a clear verb (get) and resource (training data for a recognition model), which is better than a tautology. However, it does nothing to distinguish itself from close siblings such as transkribus_model_get_train_data, transkribus_doc_get_train_data, or transkribus_recog_get_train_set, leaving the agent unable to disambiguate by scope.

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 when-to-use guidance, no preconditions, and no mention of the alternative 'get_*_train_data' tools that appear in the sibling list. The agent must infer everything from the name alone.

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

Deploy Server

Other Tools