Skip to main content
Glama

Infinivo AI Front Desk

get_demo_transcript

The full demo exchange plus the final structured case record, formatted to show a human. Call this at the end of a demo. Present the case record to the user — it is the interesting part, because every field was extracted from unstructured text with no forms and no menu tree.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
demo_session_idYesThe id returned by start_intake_demo.

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden. It discloses that the output is human-formatted and explains the significance of the case record ('every field was extracted from unstructured text'). It doesn't discuss side effects, but as a get operation this is not a safety concern.

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?

Two compact, front-loaded sentences with no redundancy. The first sentence states the deliverable, the second provides usage and why it matters.

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?

For a one-parameter getter with no output schema, the description covers what (full demo exchange + case record), when (end of demo), and why (interesting because of extraction). It could describe the exact return format, but 'formatted to show a human' is sufficient.

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 100%, with the sole parameter demo_session_id fully described as 'The id returned by start_intake_demo.' The description adds a hint that this is called at the end of a demo, which reinforces the parameter's origin but doesn't add new semantic detail beyond the schema.

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 what the tool does: returns 'the full demo exchange plus the final structured case record, formatted to show a human.' It is distinct from siblings like start_intake_demo or get_positioning, which handle other parts of the demo flow.

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?

Explicitly tells the agent when to call it: 'Call this at the end of a demo.' This is clear context, though it does not name alternatives or explicitly state when not to use it. Sibling names make the differentiation implicit.

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.6/5.0
Disambiguation5/5

Each tool targets a distinct action in the sales demo workflow—information retrieval, demo setup/progression, email demo polling, transcript retrieval, or booking. There is no overlap; even the three demo-related tools have clear lifecycle boundaries (start/continue/transcript).

Naming Consistency5/5

All tool names follow a verb_noun pattern using snake_case, with consistent verb choices (get_* for informational, start_* for demos, etc.). No mixed conventions or vague verbs.

Tool Count5/5

With 10 tools, the set is well-scoped for a sales/demo assistant, covering information, demos, access management, and booking without redundancy or bloat.

Completeness5/5

The surface covers the full sales journey: learn about the product (positioning/pricing/proof), try it (text/email demos), manage demo access, and book a call. No obvious dead ends—each demo has appropriate lifecycle support (start/continue/transcript/poll).

Resources