Skip to main content
Glama
lazyants

transkribus-mcp-server

by lazyants

Create Document from METS URL

transkribus_coll_create_doc_from_mets_url

Create a document in a Transkribus collection from a METS URL.

Instructions

Create a document in a collection from a METS URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesMETS URL
collIdYesCollection ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv4.0.0
    • removedInput schema / properties / fileName
      Removed value: -{
      -  "description": "File name for the document",
      -  "type": "string"
      -}
    • removedInput schema / properties / title
      Removed value: -{
      -  "description": "Document title",
      -  "type": "string"
      -}
  2. Addedv3.1.0
  3. Removedv3.0.0
  4. 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 declare readOnlyHint=false, openWorldHint=true, idempotentHint=false, and destructiveHint=false, so the safety profile is covered. The description adds nothing beyond that - it does not say whether the METS fetch is synchronous or job-based (the openWorldHint suggests an external network call that could fail or be slow), whether repeat calls with the same URL create duplicates, or what permissions are required. Given the lowered bar from annotations, this is thin rather than contradictory.

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 filler or repetition of the title. It is efficient, though its brevity is also the source of the gaps scored elsewhere rather than a virtue of structure alone.

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 two-parameter creation tool with a fully covered schema and no output schema, the description is minimally sufficient. However, against a sibling set that contains four near-identical 'create document from X source' variants, it leaves routing and preconditions unresolved, so it is adequate but clearly incomplete.

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% with only two required parameters (url, collId), both described in the schema, so the baseline is 3. The description confirms the url must be a METS resource but adds no format constraints or error semantics beyond the schema's format=uri.

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 gives a specific verb (Create), resource (document in a collection), and source qualifier (from a METS URL), which distinguishes it from the sibling variants that create documents from IIIF, FTP, or an uploaded METS file. It stops short of explicitly naming those siblings or the ambiguous transkribus_coll_create_doc_from_mets, so an agent must infer the routing from the URL phrasing alone.

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 when-to-use guidance, no statement of prerequisites (valid METS URL, write access to the target collection), and no explicit comparison with the near-identical siblings coll_create_doc_from_iiif, coll_create_doc_from_ftp, and coll_create_doc_from_mets. The reader has to infer everything from the tool name.

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