Skip to main content
Glama

Finish and deliver evidence

relay_finish
Destructive

Finish a VM session: deliver a verified evidence package, destroy the VM, and report delivery, snapshot completeness, execution outcome, and human review separately. Failed delivery keeps the VM.

Instructions

Complete the task: extract every declared output, deliver and verify a portable evidence package, then destroy the VM and unregister it. The result reports delivery, snapshot completeness, execution outcome and human review as separate facts; a verified package is not a passing test, and a delivered package is not itself human approval. Call this, or relay_release, explicitly before you return, since ending the session does not do it for you. A failed delivery keeps the VM for a corrected attempt.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.5.1

TDQS

A4.4/5.0
Behavior5/5

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

Annotations say destructiveHint=true, and the description goes further by disclosing VM destruction, unregistration, and the delivery/verification workflow. It also clarifies important result semantics: a verified package is not a passing test, and a delivered package is not human approval, which is valuable beyond the structured annotations.

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 compact and front-loaded with the main workflow, then covers result semantics, call timing, and failure behavior. Every sentence adds distinct operational value with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter finalization tool with no output schema, the description covers what the tool does, what the result reports, when to call it, and what happens on failure. Nothing critical is missing for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters and the schema is fully empty, so the baseline is 4. The description adds no parameter-level ambiguity and needs no parameter documentation; its mention of 'every declared output' is behavioral context rather than a parameter definition.

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-resource pair: 'Complete the task' by extracting declared outputs, delivering/verifying evidence, and destroying/unregistering the VM. This clearly separates it from most siblings, but it does not distinguish relay_finish from the closely related relay_release beyond saying 'Call this, or relay_release'.

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 gives explicit timing guidance: call before returning because ending the session does not finalize. It also names relay_release as an alternative and describes failure behavior (failed delivery keeps the VM), but it does not specify when to prefer this tool over relay_release.

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