Skip to main content
Glama

Infinivo AI Front Desk

check_email_demo

Check how far an email demo has got. Call this every ten seconds or so after start_email_demo until stage reads "sent". Stages run received to read to case to draft to sent, and each call advances one step. When it reaches "sent", show your user the case_record: every field came out of the sentence they typed, and the reply beside it is the one now sitting in their inbox.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reference_codeYesThe reference_code returned by start_email_demo, e.g. BH-7Q2K.

TDQS

A4.5/5.0
Behavior5/5

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

No annotations are present, so the description carries the full burden. It discloses a critical side effect: each call advances the demo one stage (received → read → case → draft → sent). It also explains the termination condition and what to do with the result (show case_record), covering the return value despite no output schema.

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 concise yet information-dense. Every sentence serves a purpose: polling frequency, stage sequence, side effect, and final action. It is front-loaded with the primary purpose and flows logically.

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 polling tool with side effects and no output schema, the description covers all essential context: when to call, what changes on each call, when to stop, and how to interpret the final result. It is complete and actionable.

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?

The input schema already has 100% coverage with a clear description and example for reference_code. The tool description does not add extra parameter semantics, so the baseline score of 3 is appropriate.

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 purpose: 'Check how far an email demo has got.' It specifies the resource (email demo progress) and the verb (check), and distinguishes it from siblings like start_email_demo by focusing on polling status rather than initiating.

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?

Provides explicit when-to-use guidance: 'Call this every ten seconds or so after start_email_demo until stage reads "sent"' and explains the stage progression. Does not explicitly state when not to use or name alternatives, but the context and sibling list make it clear this is for email demos only.

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