MentionsAPI MCP Server
Allows checking brand mentions in Google AI Overviews and AI Mode.
Allows checking brand mentions in Perplexity's AI search responses.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MentionsAPI MCP ServerCheck if HubSpot is mentioned for 'best CRM'."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MentionsAPI MCP Server
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
Option 1 — Remote server (recommended, zero install)
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/mcpAny 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@latestClaude 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
Sign up — free, no card, $1 free credit → https://mentionsapi.com/signup
Mint an API key (looks like
lvk_live_...) → https://mentionsapi.com/app/keysConnect using either option above
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 |
| Check if a brand is mentioned across AI search surfaces | $0.02 ( |
| Persistent monitor with HMAC-signed webhook on changes | $1/run |
| Suggest 50 queries to track for a brand | $0.50 |
| Side-by-side delta between two brands | $1.50 |
8 modes for mentions_check
Mode | Cost | What |
| $0.39 fresh / $0.02 cached | All 4 LLM APIs in parallel — ChatGPT, Claude, Gemini, Perplexity |
| $0.25 | Real Perplexity UI scrape — citations + fan-out queries |
| $0.10 | Real ChatGPT UI scrape — fan-out + brand entities |
| $0.10 | Real Gemini UI scrape |
| $0.05 | Google's AI Overviews block |
| $0.10 | Google's dedicated AI Mode |
| $0.05 | Bing Copilot AI overview |
| $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 |
| Yes | — |
| No |
|
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 URLauth_invalid— key was rejected; rotate at /app/keysinsufficient_balance— wallet empty; top-up URL includedrate_limit_exceeded— includesretry_after_secondsmode_roadmap— fordeep/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
Docs & links
Quickstart — https://mentionsapi.com/docs/quickstart
API reference — https://mentionsapi.com/docs/api/check
MCP setup guides — https://mentionsapi.com/docs/mcp
Recipes — https://mentionsapi.com/docs/recipes
Privacy policy — https://mentionsapi.com/legal/privacy
License
MIT
Available Tools
4 toolsmentions_checkARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | The natural-language question or prompt to test | |
| brand | Yes | The brand name to look for in answers | |
| mode | No | quick | |
| providers | No | ||
| runs | No | ||
| region | No |
TDQS
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.
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.
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.
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.
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.
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_compareCRead-only
Compute the delta between two queries OR two brands. Useful for competitor analysis.
| Name | Required | Description | Default |
|---|---|---|---|
| query_a | Yes | ||
| query_b | No | ||
| brand_a | Yes | ||
| brand_b | No | ||
| mode | No | quick |
TDQS
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.
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.
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.
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.
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.
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_discoverBRead-only
Suggest queries to track for a given brand. Returns ~50 candidate queries spanning informational, commercial, and comparison intents.
| Name | Required | Description | Default |
|---|---|---|---|
| brand | Yes | ||
| industry | No | ||
| count | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | ||
| brand | Yes | ||
| mode | No | quick | |
| interval | No | daily | |
| webhook_url | Yes | ||
| webhook_secret | Yes | ||
| trigger_on | No |
TDQS
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.
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.
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.
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.
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.
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.
4 tool updates
v0.3.0- First observed
mentions_check - First observed
mentions_compare - First observed
mentions_discover - First observed
mentions_watch
TDQS
Each tool has a distinct purpose: checking mentions, comparing queries/brands, discovering queries, and setting up persistent monitors. No overlap in functionality.
All tool names follow a consistent 'mentions_verb' pattern, making it predictable and easy to understand the action each tool performs.
Four tools appropriately cover the core functionality of the MentionsAPI server: query, compare, discover, and monitor. Neither too few nor too many.
The tool set covers the main use cases, but lacks a tool to manage or delete existing watches, which is a minor gap.
Maintenance
Related MCP Connectors
AI-visibility monitoring for your brand across ChatGPT, Claude, Perplexity & Gemini.
Track your brand's share of voice in ChatGPT, Claude, Perplexity and Gemini. Pay per check.
Check if ChatGPT, Perplexity & Gemini mention or cite a brand. Share of voice + GEO/AEO tracking.
Query your brand's AI visibility across ChatGPT, Claude, Perplexity, and Gemini.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables 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.16291MIT
- AlicenseAqualityCmaintenanceTrack brand visibility across ChatGPT, Perplexity, Claude, and Gemini.6419MIT
- AlicenseAqualityCmaintenanceTrack 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.17782MIT
- AlicenseNot gradedqualityBmaintenanceEnables 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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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