Skip to main content
Glama
lazyants

transkribus-mcp-server

by lazyants

Can Manage Collection

transkribus_coll_can_manage
Read-onlyIdempotent

Check if the current user can manage a given Transkribus collection by entering its collection ID, returning a boolean indicating permission.

Instructions

Check if the current user can manage the specified collection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
collIdYesCollection ID

Schema Changelog

Changes observed during successful MCP inspections.

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

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the 'current user' scope, but does not disclose anything else about behavior such as return shape, error conditions, or authentication requirements.

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, concise sentence that directly states the operation. Every word contributes meaning and there is no redundant or filler content.

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?

This is a simple single-parameter, read-only permission check with strong annotations and no output schema. The description is adequate for an agent to understand the tool, though it leaves the boolean result implicit rather than stating it explicitly.

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 collId described as 'Collection ID'. The description adds no additional parameter semantics beyond confirming the collection is the target of the check, so the baseline of 3 applies.

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 clear verb ('Check if') and a specific resource ('the current user can manage the specified collection'), so an agent can understand the tool's purpose. It does not explicitly distinguish itself from sibling permission-related tools such as transkribus_auth_check_session or transkribus_coll_user_stats, but the intent is unambiguous.

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 guidance on when to use this tool versus alternatives, nor does it mention prerequisites or exclusions. There is only an implicit sense that it should be used to verify management permission before performing collection-managing actions.

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