xSeek AEO MCP
The xSeek MCP server lets MCP-compatible clients (like Cursor) call xSeek tools using your API key.
Contents
What is MCP?
MCP (Model Context Protocol) is a standard that lets AI assistants securely connect to external tools. xSeek exposes a set of tools (robots checks, LLMs.txt generation, website/prompt management, reporting) through its MCP server so you can run them from your AI client.
Setup
~/.cursor/mcp.json
{
"mcpServers": {
"xSeek": {
"url": "https://www.xseek.io/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}Important: Replace YOUR_API_KEY_HERE with your real API key.
Available tools
Tool names appear in your MCP client. Here are the most common ones and what they do.
Scan and analyze a website's robots.txt.
Generate an LLMs.txt for a URL.
get_websites, create_website, update_website
Manage your websites, competitors, robots/sitemap URLs, and metadata.
get_prompts, create_prompt, update_prompt
Create and manage the prompts that power your AI visibility tracking.
get_latest_prompt_runs, get_leaderboard, get_sources, get_latest_ai_visits
Pull results, leaderboards, cited sources, and AI bot visit data.
Analyze a page on your site for AEO improvements (AEO Copilot).
Examples
Ask your assistant:
Ask your assistant:
Troubleshooting
If your MCP client hits a password-protected page instead of the API route, MCP won't work. Disable Vercel password protection (or exclude /api/mcp from protection if your plan supports it).
Correct endpoint format: https://<your-app-domain>/api/mcp
- Confirm your header is exactly Authorization: Bearer ...
- No quotes around the token, no extra whitespace
- Restart your MCP client after changing config
