Skip to main content
Glama

AI Visibility Check

ai_visibility_check
Read-onlyIdempotent

Probe one or more LLMs for what they know about a business / brand / product / topic and score visibility (0-100) per model. Default model is Workers AI Llama-3.3-70b (free); pass _apiKey to also probe Anthropic (BYO key — you pay Anthropic directly for those calls). Returns per-model {score, confidence, signals, raw_response} + a combined view. Useful for AI-marketing audits, pre-launch brand checks, competitive monitoring.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
entityYesThe thing to ask about. Brand/business name, product name, person, or topic. E.g. "Pipeworx", "OpenInvoice", "Acme Corp pricing".
modelsNoWhich models to probe. Supported: "workers-ai" (free default), "anthropic" (requires _apiKey). Omit for just workers-ai.
_apiKeyNoOptional Anthropic API key (sk-ant-...) — only needed if "anthropic" is in models. Passed straight through to api.anthropic.com.
contextNoOptional: a phrase locating the entity (e.g. "Boston restaurant", "B2B SaaS"). Helps disambiguate common names.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed4 schema fields changed
    • addedInput schema / properties / _apiKey
      Added value: +{
      +  "description": "Optional Anthropic API key (sk-ant-...) — only needed if \"anthropic\" is in models. Passed straight through to api.anthropic.com.",
      +  "type": "string"
      +}
    • changedInput schema / properties / context / description
      Previous value: -"Optional: a phrase locating the entity (e.g. \"Boston restaurant\", \"B2B SaaS\", \"Polish painter\"). Helps disambiguate common names."New value: +"Optional: a phrase locating the entity (e.g. \"Boston restaurant\", \"B2B SaaS\"). Helps disambiguate common names."
    • changedInput schema / properties / entity / description
      Previous value: -"The thing to ask about. Brand/business name, product name, person, or topic. E.g. \"Pipeworx\", \"OpenInvoice\", \"Acme Corp pricing\", \"the company behind ChatGPT\"."New value: +"The thing to ask about. Brand/business name, product name, person, or topic. E.g. \"Pipeworx\", \"OpenInvoice\", \"Acme Corp pricing\"."
    • addedInput schema / properties / models
      Added value: +{
      +  "description": "Which models to probe. Supported: \"workers-ai\" (free default), \"anthropic\" (requires _apiKey). Omit for just workers-ai.",
      +  "items": {
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
  2. Added

TDQS

A4.7/5.0
Behavior5/5

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

The description adds meaningful behavior beyond the annotations (readOnly, idempotent, non-destructive): it discloses the default model (Workers AI Llama-3.3-70b, free), that passing `_apiKey` routes calls to Anthropic with direct payment, and the exact return structure. This cost and model-selection context is not present in annotations and is valuable.

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 a single paragraph that front-loads the core purpose, then covers model selection, cost behavior, return format, and use cases in just three efficient sentences. There is no filler or redundant repetition of schema details.

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?

Even without an output schema, the description explains what the tool returns ('per-model {score, confidence, signals, raw_response} + a combined view'). It covers model options, API key requirements, cost implications, and use cases, making it complete for an agent to decide and invoke correctly.

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%, so the baseline is 3. The description adds extra meaning by linking `_apiKey` to Anthropic and mentioning that `context` helps disambiguate common names, slightly enriching what the schema already provides. It doesn't elaborate on parameter formats, but that's already in 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: 'Probe one or more LLMs for what they know about a business / brand / product / topic and score visibility (0-100) per model.' It names the resource (LLMs), the action (probe), and the specific output (score, confidence, signals, raw_response). It distinguishes itself from siblings like ask_pipeworx or deep_research by focusing on LLM knowledge visibility scoring.

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?

The description provides explicit use cases: 'Useful for AI-marketing audits, pre-launch brand checks, competitive monitoring.' This gives clear context for when the tool is appropriate. However, it does not name alternative tools or state when not to use it, so it stops short of full exclusion guidance.

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

A3.6/5.0
Disambiguation2/5

The tool set is a kitchen sink of unrelated utilities (Opendatasoft catalog, Pipeworx data search, prediction markets, npm scanning, memory, etc.). The 'ask_pipeworx' family (ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded) are very similar and could easily be confused. The wide variety of purposes with overlapping names makes it hard for an agent to disambiguate.

Naming Consistency1/5

Naming is wildly inconsistent: snake_case (ai_visibility_check, ask_pipeworx), concatenated (pipeworx_trending, polymarket_arbitrage), verb phrases (compare_entities, suggest_questions), and simple nouns (dataset, records). No consistent pattern exists, making it hard to predict tool names.

Tool Count2/5

At 36 tools, the server is overloaded with a scattershot collection of capabilities unrelated to its name (Opendatasoft). Only 5 tools directly relate to Opendatasoft, while the rest cover diverse third-party services. This indicates poor scope focus.

Completeness2/5

The server lacks completeness for any single purpose. For Opendatasoft, it has only read-oriented tools with no create/update/delete. For Pipeworx, many query tools exist but no data ingestion. Prediction market tools are extensive but not part of the core mission. Overall, the surface has significant gaps.