Skip to main content
Glama
Verigent-AI

@verigent/mcp-server

Official
by Verigent-AI

resume_run

Resume an interrupted verification run after a cold session using saved credentials. Specify an agent_id to pick a specific run, or defaults to the most recent.

Instructions

Resume a verification run after a cold session, using the run_token + client_nonce this server saved locally when start_verification last ran (~/.verigent/state.json, mode 0600). Endpoint: POST /api/free/resume. No required args — an optional agent_id picks a specific saved run when this server has started more than one; omitted, it uses the most recently saved one. On success, follow next_action (continue_run to keep driving the run, or get_result once it's complete) — continue_run also picks up this same saved run_token on its own, so a cold session can just call continue_run directly without calling resume_run first. If nothing is saved, or the server reports the run gone (no_open_run) or its resume window closed (expired), this tells you to call start_verification instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idNoAgent ID to resume (optional — defaults to the most recently saved run on this server)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.15

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden — and it delivers. It discloses the local-state dependency (~/.verigent/state.json with mode 0600), the server error conditions (no_open_run, expired resume window), the success routing via next_action, and the side-effect-free relationship to continue_run. This is rich behavioral context beyond any structured field.

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 long (~130 words) but front-loaded with purpose and every sentence earns its place given the tool's complexity — state dependency, error codes, and sibling routing all need coverage. It loses one point for density; the flow could be tightened with clearer separation between success-path and failure-path guidance.

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 complex tool with zero annotations and no output schema, this is remarkably complete. It covers preconditions (saved state from start_verification), the only parameter's selection logic, post-success behavior (follow next_action), and all documented failure modes with the correct fallback tool. Nothing an agent needs to invoke it correctly is missing.

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?

Schema coverage is 100%, so baseline is 3. The description adds meaning beyond the schema by explaining when agent_id matters ('when this server has started more than one' saved run) and the selection fallback ('most recently saved one'). This is genuine added semantics, though the schema already captured the default behavior.

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 opening clause states a specific verb+resource+context: 'Resume a verification run after a cold session.' It distinguishes itself from siblings by explicitly contrasting with continue_run (which can be called directly) and start_verification (which should be called if nothing is saved). The endpoint is also provided.

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

Usage Guidelines5/5

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

Exceptionally explicit. It says when to use the tool (cold session resume), when not to (continue_run already picks up the saved run_token, so resume_run can be skipped), and what to do on failure (call start_verification if nothing saved, no_open_run, or expired). It also names next_action routing (continue_run vs get_result).

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