Alvrun business support
Server Details
Ask a business's official customer support and get their verified answer, with sources.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.6/5 across 2 of 2 tools scored.
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.
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.
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.
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.
Available Tools
2 toolsaskAsk a business support questionARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| business | Yes | The business's website domain, for example acme.com, or the identifier returned by find_business. | |
| question | Yes | The customer's question, in their own words. | |
| conversation_id | No | The conversation_id from a previous result. Pass it to continue that conversation so earlier turns are remembered. |
Output Schema
| Name | Required | Description |
|---|---|---|
| answer | Yes | |
| sources | Yes | |
| decision | Yes | answer: the question was covered. clarify: one detail is missing. escalate: a person needs to take it, use human_support_url. |
| confidence | Yes | |
| conversation_id | Yes | |
| human_support_url | Yes |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
find_businessFind a businessARead-onlyInspect
Find a business that answers support questions through Alvrun, and get the identifier you need to ask one. Search by website domain for an exact match, or by name to see the candidates. Names repeat across companies, so when several come back, choose using the domain rather than the name.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | A website domain or URL for an exact match, for example acme.com, or a company name to search for. |
Output Schema
| Name | Required | Description |
|---|---|---|
| matches | Yes | |
| matched_on | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, indicating a safe read operation. The description adds valuable behavior: it explains that the tool returns an identifier, that partial matches are possible (by name), and that multiple results are likely when names repeat, guiding the user to prefer domain-based selection. This goes beyond annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place. Sentence one states purpose and outcome (identifier). Sentence two provides the two search modes. Sentence three offers disambiguation guidance. Minimal, direct, and highly readable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple lookup tool with output schema present, the description covers all essential aspects: what it does, how to query, and how to interpret results. It could explicitly mention what happens when no results are found, but given the presence of an output schema and the tool's simplicity, this is a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a clear parameter description. The tool description enriches the schema by explaining how the 'query' parameter is interpreted: as a domain/URL for exact match or as a company name for search, with examples (acme.com). This dual semantics is crucial for correct usage and is not fully captured in the schema's type/description alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool's purpose: finding a business and obtaining an identifier to ask support questions. It specifies the resource (business) and the action (find), and implicitly differentiates from the sibling tool 'ask' by framing this as the precursor to asking a question. The domain/name search distinction adds precision.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use this tool: to get an identifier needed to ask a question. It gives clear instructions on search strategies (exact domain match vs. name candidates) and how to disambiguate results (use domain over name when names repeat). It does not explicitly state 'use this instead of ask' or list alternative tools, but the usage context is well implied. Minor deduction for not explicitly naming when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceGrounds AI answers about a business in real, verified data sourced live when needed or cached for reliability, preventing hallucinations.
- FlicenseNot gradedqualityCmaintenanceEnables customer support interactions including answering FAQs, checking order status, and maintaining customer memory across sessions.
- AlicenseAqualityCmaintenanceProvides AI agents with access to real, verifiable businesses with provenance and source URLs, enabling natural-language business search and profile retrieval.2MIT
- FlicenseAqualityBmaintenanceProvides e-commerce customer support tools for order status, delivery, account, and policy questions, with RAG-grounded retrieval and strict authorization checks over mock data.6