Skip to main content
Glama
lazyants

transkribus-mcp-server

by lazyants

Add Documents to Collection

transkribus_coll_add_docs

Add multiple existing documents to a Transkribus collection by supplying collection and document IDs, with an option to move instead of copy.

Instructions

Add multiple existing documents to a collection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
collIdYesCollection ID
docIdsYesArray of document IDs to add
moveToNoMove instead of copy (default false)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv3.1.0
  2. Removedv3.0.0
  3. First observedv2.1.1

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already signal a non-read-only, non-idempotent, open-world operation; the description does not contradict them. It adds no extra detail about side effects such as duplicate behavior, permissions, or whether moveTo changes the operation, so it stays at baseline.

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?

Single sentence, front-loaded with the verb and object, no filler. Every word earns its place for such a simple tool.

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?

Adequate for a straightforward bulk-add call because all parameters are documented and the purpose is unambiguous. However, with no output schema and no guidance on duplicates, preconditions, or failure behavior, an agent has to infer those from the API 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 coverage is 100%, so the schema already documents collId, docIds, and moveTo clearly. The description adds no parameter-specific meaning beyond the schema, so baseline 3 is appropriate.

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

Purpose5/5

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

The description uses a specific verb ('add'), a clear resource ('existing documents'), and a target ('collection'). The plural 'multiple' signals this is the bulk variant of transkribus_coll_add_doc, distinguishing it without extra wording.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It clearly states the operation is for multiple existing documents, which implies use when batching additions. It does not explicitly name the singular alternative transkribus_coll_add_doc or state when not to use this tool, but the context signal is strong enough.

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