Skip to main content
Glama
lazyants

transkribus-mcp-server

by lazyants

Create Upload Structure

transkribus_upload_create_structure

Create a document upload structure for Transkribus by defining collection, title, and ordered pages with file names and page numbers.

Instructions

Create an upload document structure describing pages to be uploaded.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pagesYesOrdered list of pages in this upload structure
titleYesDocument title
authorNoDocument author
collIdYesCollection ID
descriptionNoDocument description
relatedUploadIdNoID of a related upload

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv4.0.0
    • addedInput schema / properties / author
      Added value: +{
      +  "description": "Document author",
      +  "type": "string"
      +}
    • addedInput schema / properties / description
      Added value: +{
      +  "description": "Document description",
      +  "type": "string"
      +}
    • removedInput schema / properties / nrOfPages
      Removed value: -{
      -  "description": "Number of pages",
      -  "exclusiveMinimum": 0,
      -  "maximum": 9007199254740991,
      -  "type": "integer"
      -}
    • addedInput schema / properties / pages
      Added value: +{
      +  "description": "Ordered list of pages in this upload structure",
      +  "items": {
      +    "properties": {
      +      "fileName": {
      +        "description": "Page image file name (e.g. \"0001.jpg\")",
      +        "type": "string"
      +      },
      +      "pageNr": {
      +        "description": "Page number (1-based)",
      +        "exclusiveMinimum": 0,
      +        "maximum": 9007199254740991,
      +        "type": "integer"
      +      },
      +      "pageXmlName": {
      +        "description": "PAGE XML file name for this page",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "fileName",
      +      "pageNr"
      +    ],
      +    "type": "object"
      +  },
      +  "minItems": 1,
      +  "type": "array"
      +}
    • addedInput schema / properties / relatedUploadId
      Added value: +{
      +  "description": "ID of a related upload",
      +  "exclusiveMinimum": 0,
      +  "maximum": 9007199254740991,
      +  "type": "integer"
      +}
    • changedInput schema / required
      Previous value: -[
      -  "collId",
      -  "title",
      -  "nrOfPages"
      -]New value: +[
      +  "collId",
      +  "title",
      +  "pages"
      +]
  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 declare readOnlyHint=false, destructiveHint=false, idempotentHint=false, and openWorldHint=true, so the mutation and non-idempotency are already signaled. The description adds no extra context — it does not say whether data is persisted, what permissions are needed, or what the caller receives back.

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 efficient, front-loaded sentence with no filler. It is under-specified rather than bloated, which is a completeness problem rather than a conciseness one.

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 6-parameter creation tool with no output schema, the description leaves critical gaps: what the result is, whether it must be passed to a subsequent upload call, and how it differs from the sibling upload creators. The annotations and rich schema cover part of the burden but not this routing/return-value context.

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% and covers all six parameters including nested page fields (pageNr, fileName, pageXmlName) with examples, so the schema does the heavy lifting. The description contributes nothing beyond it, so the baseline 3 applies.

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 verb (Create) and a resource (upload document structure describing pages), which is concrete, but 'structure' is ambiguous — it is unclear whether this builds a payload descriptor or persists an upload entity, and it is not distinguished from siblings such as upload_create_from_mets, upload_create_s3, or upload_page.

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 at all: no mention of prerequisites (collection must exist, files must be staged), no indication of the downstream call this structure feeds, and no exclusions relative to the other upload_* tools.

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