Skip to main content
Glama
lazyants

transkribus-mcp-server

by lazyants

Get Validation Data

transkribus_model_get_validation_data
Read-onlyIdempotent

Retrieve validation data for a Transkribus model by type and ID to assess performance, with pagination via index and nValues.

Instructions

Get the validation data for a model by type and ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesResource ID
typeYesModel type (e.g. htr, la, ocr)
indexNoStart index (0-based)
nValuesNoNumber of results (-1 for all)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changedv4.0.0
    • addedInput schema / properties / index / default
      Added value: +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
    • addedInput schema / properties / nValues / default
      Added value: +-1
    • changedInput schema / properties / nValues / description
      Previous value: -"Number of values"New value: +"Number of results (-1 for all)"
  2. Changed1 schema field changedv3.0.0
    • addedInput schema / properties / type / pattern
      Added value: +"^[^/\\s]+$"
  3. First observedv2.1.1

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already cover the safety profile (readOnlyHint, idempotentHint, destructiveHint=false, openWorldHint), so the description need not restate that. It adds nothing beyond annotations—no note on pagination behavior (index/nValues), result size, or latency—so it contributes no extra behavioral context.

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 wasted words. It is efficient, though arguably under-specified rather than a model of completeness.

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?

For a read-only lookup with a fully documented schema and no output schema, the description is minimally adequate: an agent can form a call, but it lacks any differentiation from the several near-identical validation-data siblings.

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%, so the schema already documents id, type, index, and nValues. The description only repeats 'type and ID' and adds no format or constraint detail beyond the schema, making the baseline 3 appropriate.

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?

States a specific verb and resource ('Get the validation data for a model') and clarifies the lookup key ('by type and ID'). However, it does not distinguish this from close siblings such as transkribus_model_get_validation_data_stats, transkribus_model_get_validation_data_docs, or transkribus_doc_get_validation_data, leaving the agent to guess which variant applies.

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?

The description gives no when-to-use guidance, no prerequisites, and no exclusions relative to the many sibling tools that also return validation data. It only restates the inputs, so an agent gets no routing help.

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