Skip to main content
Glama

run_demo

Run the hosted demo voice agent (a dental front desk) end-to-end and get a real, fully-scored result in about a minute — no target of your own needed. Returns the score (0–100), pass/fail verdict, per-turn metrics, the transcript, and a shareable public report URL. Zero carrier cost. Optional inputs override the scenario.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalNoWhat the synthetic caller should try to accomplish.
bargeInNoInject one caller-initiated barge-in.
personaNoOverride the synthetic caller persona.
expectedNoExpected agent lines to pin for word-error-rate.
languageNoBCP-47 language tag, default "en".

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries full burden and does well: it discloses that the result is 'real, fully-scored', lists the return values (score, verdict, metrics, transcript, public URL), states 'Zero carrier cost', and gives a time estimate ('about a minute'). It could mention potential side effects or limitations, but for a demo tool the described behavior is quite transparent.

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 three sentences, each earning its place: the first states the core action and scope, the second lists the outputs, the third addresses cost and input flexibility. It is front-loaded with the most important information and contains zero waste.

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?

Despite having no output schema, the description enumerates the expected return values (score, verdict, metrics, transcript, URL), which is critical for the agent to know what to expect. It also covers timing, cost, and input override semantics. The schema handles parameter details, and together they give a complete picture for invoking the tool 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?

The schema already covers all 5 parameters with descriptions (100% coverage), so the baseline is 3. The description adds meaningful context by stating 'Optional inputs override the scenario', clarifying that these parameters are optional modifications to a default scenario rather than required inputs. This goes beyond the schema and helps the agent understand parameter semantics.

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 function: 'Run the hosted demo voice agent (a dental front desk) end-to-end' and get a scored result. It distinguishes this from sibling tools (e.g., run_test, test_flow) by emphasizing 'no target of your own needed', clarifying it is for a pre-hosted demo rather than user-provided flows.

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?

The description provides clear context: use this when you don't have your own target, as it explicitly says 'no target of your own needed'. It also notes 'Optional inputs override the scenario', implying the default scenario runs without any overrides. It does not name alternative tools directly, but the context is strong enough to guide selection.

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

A4/5.0
Disambiguation4/5

Most tools are clearly distinct by resource (monitors, suites, flows, numbers, recordings), but run_test and test_flow could be confused since both execute tests, though their scopes differ. The descriptions help disambiguate them.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (create_, get_, list_, run_, verify_, etc.), with no camelCase or mixed conventions. Even compound names like get_monitor_health and verify_number_confirm remain predictable.

Tool Count4/5

At 16 tools, the set is slightly above the optimal 3-15 range, but the breadth of the voice-agent testing/monitoring domain justifies each tool's existence. It feels well-scoped rather than bloated.

Completeness2/5

The tool set lacks update/delete operations for most entities (monitors, suites, flows) and omits a get_run tool to retrieve individual live test results, leaving significant gaps that agents cannot work around. This will cause failures in lifecycle management and live-run result retrieval.

Resources