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

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

Annotations already mark readOnlyHint, openWorldHint, idempotentHint, destructiveHint. Description adds cost/key details and output structure (per-model score, confidence, signals, raw_response + combined view), providing extra behavioral context beyond annotations.

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, front-loaded with the main action, then details on models, key, and use cases. No wasted words; structure is efficient.

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 the tool's complexity (multiple models, optional key, score output), the description covers all essential aspects: action, default, optional parameters, return shape, and use cases. No output schema, but return is described.

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 covers 100% of parameters with descriptions. The tool description adds value by explaining default model, Anthropic key requirement, and context disambiguation, plus return format, exceeding 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 clearly states it probes LLMs for entity knowledge and scores visibility (0-100). It specifies default model and optional Anthropic probing, distinguishing it from sibling tools that focus on Pipeworx, research, or other domains.

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?

Description explicitly notes use cases: 'AI-marketing audits, pre-launch brand checks, competitive monitoring.' It implies context but does not contrast with alternative tools or state when not to use.

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

Several tools occupy nearly identical roles: ask_pipeworx and ask_pipeworx_beta are described as currently identical, ask_pipeworx_grounded and deep_research overlap with the router, and eia_series overlaps with the specialized eia_electricity/eia_ethanol/eia_natural_gas/eia_petroleum tools. The Polymarket opportunity scanners and the two AI-visibility checkers also blur together, making confident tool selection difficult despite detailed descriptions.

Naming Consistency3/5

Most tools follow a snake_case verb-first pattern (remember, recall, forget, resolve_entity, validate_claim), but there are notable deviations: eia_electricity and eia_ethanol are noun-first category names, recent_alerts and recent_changes are adjective-noun, and pipeworx_trending and polymarket_edges are not verb-driven. The eia_ and polymarket_ prefixes add some predictability, so the naming is readable but inconsistent.

Tool Count2/5

At 36 tools, this is well past the heavy threshold and feels like a kitchen-sink aggregation of several separate products rather than one focused server. Many tools could be consolidated: the five eia_* lookups, the multiple ask_pipeworx variants, and the several Polymarket scanners all serve close purposes. A 36-tool surface is too much for an agent to navigate efficiently.

Completeness4/5

Within the major subdomains the set is quite complete: entity research has profile/compare/changes/resolve, memory has remember/recall/forget, subscriptions have subscribe/list/unsubscribe/recent_alerts, and Polymarket analysis has edge discovery, fill-risk, venue-spread, and persistence tracking. Minor gaps exist—no subscription update flow, no dedicated EIA coal/nuclear/renewables series beyond the generic eia_series fallback—but agents can work around them.