Skip to main content
Glama
lazyants

transkribus-mcp-server

by lazyants

Authorize Users for Job

transkribus_admin_authorize_users_for_job

Grant specific users authorization to run a job implementation by providing its identifier and user IDs.

Instructions

Authorize specific users to run a job implementation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
jobImplYesJob implementation identifier
userIdsYesList of user IDs to authorize

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv4.0.0
    • addedInput schema / properties / userIds / items / description
      Added value: +"User ID"
  2. Changed1 schema field changedv3.0.0
    • addedInput schema / properties / jobImpl / pattern
      Added value: +"^[^/\\s]+$"
  3. 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, idempotentHint=false, destructiveHint=false, and openWorldHint=true, so the safety profile is covered. The description adds only the scoping phrase 'to run a job implementation' and says nothing about whether it appends to or replaces the existing ACL, or that repeated calls (non-idempotent) may duplicate grants.

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, which is structurally clean. It is arguably too sparse for an admin mutation tool, but there is no wasted language.

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 admin mutation with full schema coverage and no output schema, the description is minimally adequate. It omits key behavioral context about ACL semantics and permissions, but the annotations carry the safety profile.

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 both jobImpl and userIds clearly documented in the schema, so the baseline of 3 applies. The description's 'specific users' and 'job implementation' merely restate what the schema already conveys, adding no format or constraint detail.

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 (Authorize) and resources (specific users, job implementation), which is more precise than the bare title. It does not, however, differentiate itself from related siblings such as transkribus_user_is_allowed_for_job, transkribus_admin_get_job_users, or transkribus_user_get_job_acl.

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 statement of when to use this tool versus checking whether a user is already allowed (transkribus_user_is_allowed_for_job) or listing current job users (transkribus_admin_get_job_users). Prerequisites such as requiring admin rights are also absent, leaving usage entirely to inference.

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