Skip to main content
Glama

Start visibility check

start_visibility_check

Measure whether a brand shows up when buyers ask AI assistants for a recommendation. Asks real buyer questions to OpenAI, Anthropic and Gemini and reports what they answered, not what they claim they would answer. Free, no signup, one measurement per domain every 30 days. Returns a runId: call get_visibility_check with it after about a minute. If the domain was already measured this month the response says quota_reached and includes when it ran.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
brandYesBrand name as customers write it
websiteYesDomain, like yourbrand.com
categoryYesWhat the business sells, in plain words
languageNoLanguage the buyer questions are asked in
locationNoWhere the business competes, like 'Cordoba, Argentina'
competitorsNoUp to 5 real competitors, comma separated

TDQS

A4.7/5.0
Behavior5/5

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

The description goes beyond the annotations by disclosing that the tool makes live calls to OpenAI, Anthropic, and Gemini, reports actual answers rather than claimed behavior, is rate-limited per domain, and returns either a runId or a quota_reached signal. It also implies the operation is asynchronous, which is important for invocation behavior.

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 carrying necessary information: the core measurement, the method and truthfulness, the follow-up flow, and the quota behavior. It is front-loaded with the main purpose and contains no filler.

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?

Given there is no output schema, the description adequately explains the return behavior (runId and quota_reached) and the follow-up call. It covers external side effects, constraints, and async timing, so an agent has enough context to invoke it correctly.

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 documents all six parameters with descriptions, achieving 100% coverage, so the description doesn't need to repeat them. The description adds no parameter-specific guidance beyond the general mention of 'domain' in the quota rule, so the baseline 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 states a clear, specific objective: measure whether a brand appears in AI assistant recommendations by asking real buyer questions to OpenAI, Anthropic, and Gemini. It distinguishes itself from the sibling get_visibility_check by noting this tool starts a run and returns a runId, while the sibling retrieves the result.

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?

It provides concrete usage guidance: call this to start a measurement, then call get_visibility_check with the runId after about a minute. It also states constraints (free, no signup, one measurement per domain every 30 days) and the quota_reached response, so an agent knows when this tool is or isn't available.

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

start_visibility_check initiates the measurement and returns a runId, while get_visibility_check consumes that runId to fetch the result. Their roles are completely distinct and easy for an agent to separate.

Naming Consistency5/5

Both tools follow a clear verb_noun pattern, sharing the same visibility_check noun and differing only in the start/get action. This is highly consistent and predictable.

Tool Count4/5

Two tools is minimal, but it fits the server's narrow start-and-retrieve workflow perfectly. No extra tools are needed for this domain.

Completeness5/5

The tool surface covers the full lifecycle of a visibility measurement: launch the check, retrieve the verdict, and handle quota scenarios through the response. There are no obvious dead ends for the stated purpose.