Skip to main content
Glama
verifyax

VerifyAX MCP

Official
by verifyax

Generate scenario

generate_scenario

Create info_exchange or interview test scenarios with optional skill tags and context, including batch generation, for agent evaluation workflows.

Instructions

Generates a new test scenario of a given type (info_exchange or interview) with optional skill tags and context. Typically takes 30s–2min; task-capable MCP clients receive a pollable task handle immediately, while others block until generation finishes. Set num_scenarios greater than 1 for batch mode (requires tag_pool). Returns the new scenario’s uuid, or batch uuids when batching, or a structured error with details if generation fails (e.g. incompatible tags).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesWorkspace-unique scenario name.
tagsNoSkill tag names (use list_compatible_tags to pick valid ones).
tag_poolNoRequired when num_scenarios > 1; universe of tag names to sample from.
total_tagsNoBatch only; tags drawn per scenario from tag_pool.
include_tagsNoBatch only; tags required in every scenario (subset of tag_pool).
num_scenariosNoBatch size. 1 = single scenario (default). Greater than 1 requires tag_pool.
scenario_typeYes
context_promptNo
max_tags_per_npcNoBatch only; caps tags per NPC.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A4.1/5.0
Behavior5/5

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

Goes well beyond the annotations by disclosing latency (30s–2min), the dual execution model (pollable task handle for task-capable clients vs blocking for others), batch semantics, and the failure mode (structured error, e.g. incompatible tags). Annotations only say it is a non-read, non-destructive write, so the description carries meaningful extra behavioral context.

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?

Three front-loaded sentences with no filler: capability, execution timing/model, and return/error behavior. It is dense but each clause carries information; the batch detail is arguably the only overloaded part.

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?

With no output schema, the description compensates by explaining return values (uuid, batch uuids, structured error). For a 9-parameter tool it leaves context_prompt and name semantics to the schema, but the critical complexity (batching, task handling, failure) is covered.

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 coverage is 78% and parameters like name, context_prompt, and scenario_type already carry their own descriptions, so the schema does the heavy lifting. The description restates the num_scenarios/tag_pool relationship rather than adding new meaning, which is the expected baseline when coverage is high.

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?

States a specific verb and resource ("Generates a new test scenario") and enumerates the two valid scenario types, so the action is unambiguous. It does not, however, differentiate itself from siblings like list_scenarios or preview_run_cost, leaving the agent to infer the boundary.

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?

Gives clear context: single vs batch mode, the tag_pool prerequisite for num_scenarios > 1, and points to list_compatible_tags when picking tags. There are no explicit when-not-to-use statements or sibling routing, so it stops short of a 5.

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