AEO Copilot MCP Server
Enables checking brand mentions, position, sentiment, and competitors in Google AI Overviews responses to prompt queries.
Enables checking brand mentions, position, sentiment, and competitors in Perplexity's AI responses to prompt queries.
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., "@AEO Copilot MCP Serverwhat's my brand's AI visibility score?"
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.
AEO Copilot MCP Server
Connect AEO Copilot to Claude or any MCP-compatible assistant. Ask your AI about your brand's visibility in ChatGPT, Claude, Perplexity, and Google AI Overviews without switching tabs.
What is AEO Copilot?
AI search engines are eating into traditional search traffic. When someone asks ChatGPT "What's the best tool for X?", your brand either shows up or it doesn't — and unlike Google, there's no ranking page to check.
AEO Copilot runs prompts against ChatGPT, Claude, Perplexity, and Google AI Overviews and records whether your brand got mentioned, where it ranked, how it was described, and which competitors showed up instead. This MCP server puts that data inside your AI assistant.
Related MCP server: ai-visibility-mcp
Tools
Tool | Description |
| List all brands on your account |
| List topics for a brand (e.g. "Product Comparisons", "Pricing Questions") |
| Per-prompt results across ChatGPT, Claude, Perplexity, and Google AI Overviews: mention status, position, sentiment, sources, competitors, and the full answer text. Set |
| Aggregated analytics: visibility score, sentiment counts, competitive share, weekly trends, top topics |
| Prioritised action items based on prompt results and a technical audit of your site |
| Create a new brand (subject to your plan's brand limit) |
| Create a topic cluster for a brand |
| Bulk-add prompts to a brand under a topic (subject to your plan's monthly prompt limit) |
| Run all prompts for a brand (or one topic) across every enabled LLM |
| Run the technical audit on the brand's website and return the full scan result |
| Create an industry index (brand-agnostic — every cited entity is captured) |
| List all industry indexes on your account |
| Add a topic cluster to an index |
| Bulk-add prompts to a topic in an index |
| Run all index prompts across all 4 LLMs and store full per-LLM results |
| Raw per-prompt results for an index across all LLMs |
| Ranked entity list by citation frequency + concentration score (top-1 share, HHI) |
| Domains ranked by citation frequency across every LLM response |
| Prompts/topics where no entity is consistently cited — opportunity gaps |
Setup
1. Get your API key
Log in to aeo-copilot.com
Go to Settings → API
Click Create API key
Copy the key — it starts with
aeo_
Keep it somewhere safe; you won't be able to see the full key again after closing the dialog.
2. Add to Claude Code
claude mcp add aeo-copilot -e AEO_COPILOT_API_KEY=aeo_your_key_here -- npx aeo-copilot-mcp3. Add to Claude Desktop
Edit claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"aeo-copilot": {
"command": "npx",
"args": ["aeo-copilot-mcp"],
"env": {
"AEO_COPILOT_API_KEY": "aeo_your_key_here"
}
}
}
}Restart Claude Desktop after saving.
What you can ask
"What's my brand's AI visibility score?"
"Show me exactly what Claude said about my brand"
"Which prompts mention my competitors but not me?"
"Show me my visibility trend for the last 30 days"
"What topics are performing best in AI search?"
"What should I fix to improve my AI visibility?"
"How does my brand compare to [competitor] in AI-generated answers?"
"What's the sentiment breakdown for my brand mentions?"
API reference
list_brands
GET /api/v1/brandsReturns all brands on your account: name, website, industry, products, competitors.
list_topics
GET /api/v1/brands/:id/topicsTopics group related prompts. Each topic has a name, description, target pages, and keywords.
get_results
GET /api/v1/brands/:id/resultsPer-prompt results. Each entry includes mention status, position, sentiment, sources cited, and competitors — broken down by AI engine. Every engine block also carries response: the full answer text that engine returned for the prompt.
Optional filters:
Parameter | Type | Description |
| string | Filter by topic |
| string | Return only one engine's answers: |
| ISO date | Start date, e.g. |
| ISO date | End date |
| number | Max results (default 100, max 500) |
The API has no server-side
enginefilter — it always returns all four engine blocks. The MCP server applies theenginefilter client-side so you get a focused, smaller payload when you only want one LLM (e.g. exactly what Claude said).
get_insights
GET /api/v1/brands/:id/insightsAggregated analytics:
Visibility score: percentage of prompts where your brand was mentioned
Sentiment: positive, neutral, and negative counts
Competitive share: your mentions vs. competitor mentions
Visibility trend: week-by-week breakdown
Top topics: which groups are driving the most visibility
Competitor breakdown: how often each competitor appears
get_recommendations
GET /api/v1/brands/:id/recommendationsPrioritised recommendations (high / medium / low) across visibility, content, and technical categories.
create_brand
POST /api/v1/brandsCreate a new brand. Body: name (required), website, industry, products[], competitors[]. Returns 402 if you've hit your plan's brand limit.
create_topic
POST /api/v1/brands/:id/topicsCreate a topic cluster. Body: name (required), description, pages[], keywords[].
add_prompts
POST /api/v1/brands/:id/promptsBulk-add prompts under a topic. Body: topicId (required), prompts[] (required, array of strings). Returns 402 if adding these prompts would exceed your plan's monthly prompt limit.
run_brand_prompts
POST /api/v1/brands/:id/runRun all prompts across every enabled LLM. Optional query param topicId to scope to a single topic. Returns the count of prompts run.
scan_brand
POST /api/v1/brands/:id/scanRun the technical audit on the brand's website. Returns the full scan result (schema markup, sitemap, llms.txt, etc.) — same data the dashboard's technical scan view shows.
Industry indexes
Indexes are brand-agnostic: instead of tracking how your brand is mentioned, an index tracks every entity cited across an industry's prompts. Useful for category mapping, competitive whitespace, and seeing which sources the LLMs lean on.
create_index
POST /api/v1/indexesCreate an industry index. Body: name (required), industry (required), description.
list_indexes
GET /api/v1/indexesList all indexes on your account.
add_index_topic
POST /api/v1/indexes/:id/topicsAdd a topic cluster. Body: name (required), description.
add_index_prompts
POST /api/v1/indexes/:id/promptsBulk-add prompts under a topic. Body: topicId (required), prompts[] (required, array of strings).
run_index_prompts
POST /api/v1/indexes/:id/runRun every prompt across all 4 LLMs (ChatGPT, Claude, Perplexity, Google AI Overviews). All extracted entities are stored as competitors — no brand filter.
get_index_results
GET /api/v1/indexes/:id/resultsRaw per-prompt results across all LLMs. Same shape as /brands/:id/results minus the brand-mention fields.
get_index_share_of_voice
GET /api/v1/indexes/:id/share-of-voiceRanked entity list by citation frequency, plus a concentration score:
top1Share: the % of mentions held by the most-cited entityhhi: an HHI-style index (sum of squared shares × 10,000) showing how concentrated mentions are. Higher = more dominated by a few entities.
get_index_sources
GET /api/v1/indexes/:id/sourcesDomains ranked by citation frequency across every LLM response in the index.
get_index_whitespace
GET /api/v1/indexes/:id/whitespacePrompts and topics where no entity is consistently cited — i.e. fewer than 1 consistent entity appears across at least 50% of runs. These are the gaps where a brand can establish authority before the category solidifies.
Development
git clone https://github.com/sofianbettayeb/aeo-copilot-mcp
cd aeo-copilot-mcp
npm install
AEO_COPILOT_API_KEY=aeo_your_key npm run devLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/sofianbettayeb/aeo-copilot-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server