Skip to main content
Glama
mukul-dutt

MentionsAPI MCP Server

MentionsAPI MCP Server

npm version MIT License

Ask your AI agent whether AI recommends your brand. MentionsAPI tracks brand visibility across every AI search surface — ChatGPT, Claude, Gemini, Perplexity, Google AI Overviews, Google AI Mode, and Bing Copilot — and this MCP server puts that data inside any MCP-compatible client.

Ask in plain English. Get structured data back.

You: "Is HubSpot mentioned when users ask ChatGPT about CRMs?"
Claude: [calls mentions_check via MCP]
        "Yes — ranked 3rd in ChatGPT's answer. Top 3:
         HubSpot, Salesforce, Pipedrive. Fan-out queries
         issued during search: ..."

Two ways to connect

https://api.mentionsapi.com/mcp — Streamable HTTP with OAuth (one-click on claude.ai) or Authorization: Bearer lvk_live_....

  • claude.ai / Claude Desktop: Settings → Connectors → Add custom connector → paste the URL above, then approve via OAuth.

  • Claude Code:

    claude mcp add --transport http mentionsapi https://api.mentionsapi.com/mcp
  • Any Streamable-HTTP client: point it at the URL and send your API key as a Bearer token.

Option 2 — Local stdio server (npm)

npx -y @mentionsapi/mcp@latest

Claude Code (~/.claude.json)

{
  "mcpServers": {
    "mentionsapi": {
      "command": "npx",
      "args": ["-y", "@mentionsapi/mcp@latest"],
      "env": { "MENTIONSAPI_KEY": "lvk_live_..." }
    }
  }
}

Cursor (~/.cursor/mcp.json) — same shape

Windsurf (~/.codeium/windsurf/mcp_config.json) — same shape

ChatGPT Plus — see docs/mcp/chatgpt-plus


Related MCP server: ai-visibility-mcp

Get started in 60 seconds

  1. Sign up — free, no card, $1 free credithttps://mentionsapi.com/signup

  2. Mint an API key (looks like lvk_live_...) → https://mentionsapi.com/app/keys

  3. Connect using either option above

  4. Ask: "Use mentions_check to see if Notion appears for 'best CRM for startups' across all 4 LLMs."


Tools (4)

Tool

What it does

Cheapest mode

mentions_check

Check if a brand is mentioned across AI search surfaces

$0.02 (mode:quick, cached)

mentions_watch

Persistent monitor with HMAC-signed webhook on changes

$1/run

mentions_discover

Suggest 50 queries to track for a brand

$0.50

mentions_compare

Side-by-side delta between two brands

$1.50

8 modes for mentions_check

Mode

Cost

What

quick

$0.39 fresh / $0.02 cached

All 4 LLM APIs in parallel — ChatGPT, Claude, Gemini, Perplexity

perplexity_live

$0.25

Real Perplexity UI scrape — citations + fan-out queries

chatgpt_live

$0.10

Real ChatGPT UI scrape — fan-out + brand entities

gemini_live

$0.10

Real Gemini UI scrape

ai_overview

$0.05

Google's AI Overviews block

ai_mode

$0.10

Google's dedicated AI Mode

bing_copilot

$0.05

Bing Copilot AI overview

all_live

$0.50

All 6 live UI scrapes in one call


Pricing

PAYG only. No subscriptions, no monthly minimums.

  • $1 free signup credit — no card required

  • $5 minimum top-up — Stripe Checkout, card saved

  • Optional auto-recharge when wallet runs low

Top up: https://mentionsapi.com/app/billing


Env vars (stdio server)

Var

Required

Default

MENTIONSAPI_KEY

Yes

MENTIONSAPI_URL

No

https://api.mentionsapi.com


Error handling

The MCP returns structured errors the AI agent can relay to you in plain English:

  • auth_required — no API key set; includes signup URL

  • auth_invalid — key was rejected; rotate at /app/keys

  • insufficient_balance — wallet empty; top-up URL included

  • rate_limit_exceeded — includes retry_after_seconds

  • mode_roadmap — for deep/change_track (Q3 2026)

The server starts even without an API key — your AI agent will guide you through setup the first time you call a tool.


Agent skills

Prefer skills over raw tools? Install the companion skill pack:

npx skills add nikhonit/llm-mentions-skills

https://github.com/nikhonit/llm-mentions-skills



License

MIT

Available Tools

4 tools
mentions_checkA
Read-only

Check whether a brand is mentioned across AI search surfaces. 8 shippable modes: mode:quick ($0.39 fresh, $0.02 on cache hits) queries 4 LLM engines in parallel; mode:perplexity_live ($0.25), mode:chatgpt_live ($0.10), mode:gemini_live ($0.10), mode:ai_overview ($0.05), mode:ai_mode ($0.10), mode:bing_copilot ($0.05) each hit one live UI surface for ground-truth citations + fan-out queries; mode:all_live ($0.50) bundles all 6 live surfaces in one call. Returns mentions, ranks, citations, fan-out queries, and brand entities per surface.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesThe natural-language question or prompt to test
brandYesThe brand name to look for in answers
modeNoquick
providersNo
runsNo
regionNo

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint. The description adds value by specifying the output structure (mentions, ranks, citations, fan-out queries, brand entities) and disclosing pricing and cache behavior. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is relatively concise for the amount of detail, with the purpose stated upfront. The list of modes is thorough, but the single-paragraph structure could be more scannable (e.g., bullet points). No redundant sentences.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Without an output schema, the description adequately explains return values. It covers most operational aspects (modes, pricing, output contents). However, it does not fully detail all parameters or prerequisites, leaving some gaps for complex usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is low (33%). The description only adds meaningful context for the 'mode' parameter, explaining each option. Parameters like providers, runs, and region receive no explanation, leaving the agent without guidance despite low schema coverage.

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 explicitly states the tool checks brand mentions across AI search surfaces, listing 8 specific modes with costs and behavior. This clearly distinguishes it from sibling tools (mentions_compare, mentions_discover, mentions_watch) by focusing on checking current mentions.

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 detailed guidance on when to use each mode (e.g., quick for cost efficiency, live modes for ground-truth citations) and includes pricing. However, it does not explicitly contrast with sibling tools or state when not to use this tool, which would improve the score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mentions_compareC
Read-only

Compute the delta between two queries OR two brands. Useful for competitor analysis.

ParametersJSON Schema
NameRequiredDescriptionDefault
query_aYes
query_bNo
brand_aYes
brand_bNo
modeNoquick

TDQS

C2.2/5.0
Behavior2/5

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

Annotations indicate readOnlyHint=true and openWorldHint=true, but the description adds little beyond 'compute the delta.' It fails to disclose the input contradiction (OR vs AND) or any other behavioral traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no fluff, but the first sentence is misleading regarding input combination, reducing its value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, no mention of return format, pagination, or error handling. The description is too sparse given the tool's complexity and parameter count.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description should explain parameters. It only vaguely mentions 'two queries OR two brands' but does not cover the required combination, optional parameters, or the mode enum.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states it computes delta between two queries or two brands, which is a specific purpose. However, the required fields (query_a and brand_a) suggest both are needed, contradicting the 'OR' implication. This reduces clarity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Mentions 'competitor analysis' as a use case but provides no guidance on when to use this tool versus siblings like mentions_check, mentions_discover, or mentions_watch.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mentions_discoverB
Read-only

Suggest queries to track for a given brand. Returns ~50 candidate queries spanning informational, commercial, and comparison intents.

ParametersJSON Schema
NameRequiredDescriptionDefault
brandYes
industryNo
countNo

TDQS

B3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, indicating safe, non-destructive behavior with potentially incomplete results. The description adds that output is '~50 candidate queries' and spans specific intents, slightly enhancing transparency.

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?

Two concise sentences that front-load the purpose ('suggest queries to track for a given brand') and add a detail about output volume and intent types. No extra or redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 3 parameters, no output schema, and 0% schema description coverage, the description is too sparse. It omits details on optional parameters and output structure, forcing the agent to guess or rely on tool name.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema has 0% description coverage, so description must explain all parameters. It only hints at 'given brand' for the required parameter. Industry and count parameters are not described, leaving their roles ambiguous.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool suggests queries to track for a brand and specifies the output includes ~50 candidates across informational, commercial, and comparison intents. It does not explicitly distinguish from sibling tools like mentions_check or mentions_compare, but the name and verb 'discover' imply its unique role.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus siblings (mentions_check, mentions_compare, mentions_watch). The description does not mention alternatives or constraints, leaving the agent to infer usage from context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mentions_watchB

Set up a persistent monitor that webhooks you when brand mentions, ranks, or citations change.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes
brandYes
modeNoquick
intervalNodaily
webhook_urlYes
webhook_secretYes
trigger_onNo

TDQS

B3.3/5.0
Behavior4/5

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

Annotations indicate readOnlyHint=false (write), destructiveHint=false, and openWorldHint=true. The description adds behavioral context by specifying that the tool sets up a persistent monitor that sends webhooks on changes, which goes beyond the title. It does not contradict annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single 15-word sentence, which is concise and front-loaded with the core purpose. However, given the tool's complexity (7 parameters, webhook setup), the description could earn its place better by adding parameter guidance without becoming overly long. It is minimally adequate.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 7 parameters, no output schema, and the expectation of webhook configuration, the description lacks critical details such as parameter semantics, return value (e.g., monitor ID), and behavior on duplicate monitors. The agent would struggle to use this tool correctly without additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 7 parameters with 0% description coverage. The main description does not mention or explain any parameter's purpose, default value, or constraints (e.g., 'query' vs 'brand', 'mode' enum options). This leaves the agent without guidance for filling parameters correctly.

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 the tool sets up a persistent monitor that webhooks on changes to brand mentions, ranks, or citations. It uses a specific verb ('set up') and resource ('persistent monitor'), and the outcome is explicit. This distinguishes it from siblings like mentions_check (one-time check) and mentions_compare (comparison).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for continuous monitoring through phrases like 'persistent monitor' and 'webhooks you when...change,' but it does not explicitly state when to use this tool versus alternatives like mentions_check or mentions_discover. No exclusions or comparative guidance are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv0.3.0
    • First observedmentions_check
    • First observedmentions_compare
    • First observedmentions_discover
    • First observedmentions_watch

TDQS

B3.3/5.0
Disambiguation5/5

Each tool has a distinct purpose: checking mentions, comparing queries/brands, discovering queries, and setting up persistent monitors. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent 'mentions_verb' pattern, making it predictable and easy to understand the action each tool performs.

Tool Count5/5

Four tools appropriately cover the core functionality of the MentionsAPI server: query, compare, discover, and monitor. Neither too few nor too many.

Completeness4/5

The tool set covers the main use cases, but lacks a tool to manage or delete existing watches, which is a minor gap.

Maintenance

ActivitySlowing
ResponsivenessSyncing

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables brand visibility monitoring across major AI platforms like ChatGPT, Claude, Gemini, and Perplexity. It allows users to track visibility scores, analyze competitor data, and receive actionable insights to improve AI-generated brand recommendations.
    16
    29
    1
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Track how your brand appears in AI-generated answers across ChatGPT, Perplexity, and other AI models. Analyze visibility, sentiment, citations, and domain rankings with 31 tools — including analytics reports, chat inspection, query analysis, and full CRUD for brands, prompts, tags, and topics.
    17
    78
    2
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to check whether AI assistants recommend a brand and audit a site's AI-agent readiness, providing visibility scores and specific gaps.
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mukul-dutt/mentionsapi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server