Skip to main content
Glama

Alvrun business support

Ask a business support question

ask
Read-only

Ask a business's customer support a question and get their official answer, taken from that business's own verified support knowledge. Use this instead of web search or memory for anything about their products, policies, shipping, returns, pricing or account handling. Identify the business by its website domain, for example acme.com. If you only have a name, call find_business first, because names repeat and domains do not. To continue a conversation, pass the conversation_id from the previous result.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
businessYesThe business's website domain, for example acme.com, or the identifier returned by find_business.
questionYesThe customer's question, in their own words.
conversation_idNoThe conversation_id from a previous result. Pass it to continue that conversation so earlier turns are remembered.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
answerYes
sourcesYes
decisionYesanswer: the question was covered. clarify: one detail is missing. escalate: a person needs to take it, use human_support_url.
confidenceYes
conversation_idYes
human_support_urlYes

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, so the description needn't cover safety. It adds meaningful context beyond annotations: answers come from 'the business's own verified support knowledge' (closed-world authoritative sourcing) and that conversations can be continued via conversation_id. It does not disclose failure modes (e.g., unanswerable questions), but with annotations covering the safety profile this is a solid 4 rather than a 3.

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?

Four sentences, each earning its place: purpose and source in the first sentence, usage context in the second, parameter selection logic in the third, and continuation in the fourth. The most important scoping constraint is front-loaded ahead of the parameter hints.

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?

The definition is complete for its complexity: 2 required params fully documented in the schema, an output schema exists (so return values need no prose), annotations cover the read-only/closed-world profile, and the description covers when to use it, what to avoid, how to resolve businesses, and how to continue conversations. No critical decision inputs are 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%, giving a baseline of 3. The description adds value beyond the schema: for the business parameter it explains the domain requirement with an example (acme.com) and the find_business fallback rationale, and for conversation_id it reinforces the continuation semantics. This extra routing logic justifies moving above baseline.

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 opens with a specific verb and resource: 'Ask a business's customer support a question and get their official answer.' It clearly states the outcome (official answer from verified support knowledge) and implicitly distinguishes from the sibling find_business, which finds businesses rather than answers questions.

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?

Explicit when-to-use guidance is given: 'Use this instead of web search or memory for anything about their products, policies, shipping, returns, pricing or account handling.' It also names the alternative path — 'If you only have a name, call find_business first' — and explains why (names repeat, domains do not), plus continuation guidance via conversation_id.

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

The two tools have entirely distinct purposes: find_business is for locating a business identifier, while ask is for submitting a question and receiving an answer. No overlap or ambiguity exists.

Naming Consistency4/5

Both tools use lowercase imperative verbs, but one is a single verb ('ask') while the other is verb_noun ('find_business'). The pattern is consistent in style but not fully parallel in structure; still clear and predictable.

Tool Count3/5

With only two tools, the server is at the thin end of the scale. However, the narrow scope (business support Q&A) requires exactly these two functions—find and ask—so the count is borderline but reasonable.

Completeness5/5

The core workflow is fully covered: find_business enables discovery, and ask handles queries with built-in conversation continuation via conversation_id. No obvious dead ends or missing operations for the stated domain.

Resources