Skip to main content
Glama
lazyants

transkribus-mcp-server

by lazyants

Get Transcript IDs

transkribus_doc_get_transcript_ids
Read-onlyIdempotent

Retrieve all transcript IDs for a document in a collection, with optional filters by page range, transcript status, and result count.

Instructions

Get all transcript IDs for a document.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesDocument ID
indexNoStart index (0-based)
pagesNoPage range filter
collIdYesCollection ID
statusNoFilter by transcript status
nValuesNoNumber of results (-1 for all)
skipPagesWithMissingStatusNoSkip pages with missing status

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

B3.2/5.0
Behavior2/5

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

The annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, covering the safety profile. The description adds no further behavioral context such as pagination, filter behavior, or output ordering.

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 front-loaded sentence with no wasted words. It is appropriately sized for this tool.

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?

Given 100% schema coverage, annotations, and no output schema, the description is largely complete: it identifies the returned entity and the document scope. It could mention filtering or pagination nuances, but the schema handles those parameters.

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 all seven parameters are documented in the schema itself. The description adds no parameter-level meaning beyond the schema, which matches the baseline of 3 for high coverage.

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 and resource: get all transcript IDs for a document. It is clear enough to distinguish from page-level transcript tools like transkribus_page_list_transcripts, though it does not explicitly name any sibling.

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?

There is no guidance on when to use this tool versus alternatives such as transkribus_page_list_transcripts or transkribus_doc_get_pages. The agent must infer usage from the name and description 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