Skip to main content
Glama

HandoffMyTask — Manage Handoff

manage_task_handoff

Create a bearer-token task handoff, let another paid API identity claim it exactly once, and inspect, complete, or cancel the transfer. Only task fingerprints are stored. Production.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tokenNo
operationYes
control_idNo
task_fingerprintNo
expires_in_secondsNo

TDQS

A3.5/5.0
Behavior3/5

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

The annotations provide no safety hints (readOnlyHint=false, destructiveHint=false), so the description carries full burden. It adds useful context: bearer-token authentication, exactly-once claim, and fingerprint-only storage. However, it omits behavioral traits like whether operations are reversible, what data is mutated, or any authorization requirements beyond mentioning 'paid API identity'.

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?

The description is short—essentially one sentence plus two fragments—and front-loads the main verb 'Create'. No filler words. It could be more structured by separating operations, but it remains clear and efficient.

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?

Given the tool's complexity (5 operations, 5 parameters, no output schema, no annotations), the description is insufficient. It lacks details on state transitions between operations, parameter constraints, return values, and error conditions. An agent would struggle to correctly invoke operations like 'claim' or 'cancel' without more 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?

With 0% schema description coverage, the description partially compensates by explaining token (bearer-token), operation (enumerated verbs), and task_fingerprint (fingerprints stored). However, it fails to explain control_id and expires_in_seconds, leaving two of five parameters unaddressed.

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 clearly states the tool's purpose: to create, claim, inspect, complete, or cancel a bearer-token task handoff. It specifically mentions the resource ('task handoff') and the actions (create, claim, etc.), distinguishing it from sibling tools that manage different concepts like action challenges or resource leases.

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

Usage Guidelines3/5

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

The description does not provide explicit guidance on when to use this tool versus the many sibling alternatives. It implies usage for task handoff between paid API identities but lacks any 'when-not-to-use' or direct comparisons to other manage_* tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.2/5.0
Disambiguation3/5

The tool set covers two domains (text processing and agent infrastructure) with many specialized tools. Text tools like inspect_text, scan_untrusted_text, sanitize_agent_context, and prepare_for_agent have overlapping risk signals but descriptions clarify distinct purposes. Action infrastructure tools like manage_action_challenge, manage_action_quorum, manage_action_reconciliation are well-differentiated but numerous, leading to potential confusion for an agent selecting among them.

Naming Consistency4/5

All tools use snake_case with a verb_noun pattern (e.g., check_action, manage_task_contract, scrub_text). The verbs are diverse (check, manage, create, delete, record, inspect, etc.) but consistently applied. A few deviations like fingerprint_action and lock_action_intent still follow the style. Overall, the naming is predictable and homogeneous.

Tool Count2/5

49 tools is excessive for a typical MCP server. The server tries to combine text preprocessing (10-12 tools) with a comprehensive agent infrastructure (30+ tools) into one surface. While each tool may serve a purpose, the count overwhelms the typical scope, making it hard for an agent to navigate efficiently.

Completeness4/5

The text processing suite covers scrubbing, inspection, redaction, validation, and detection thoroughly. The agent infrastructure covers idempotency, approval, signals, leases, budgets, deadlines, handoffs, and reconciliation. There are no obvious missing lifecycle states for the intended advanced agent framework. Minor gaps exist, such as no tool to list all active locks or signals, but these are likely out of scope.

Resources