agentaeo/agentaeo-mcp-server
AgentAEO – AI Search Visibility & SEO Audit Agent for Claude Code
Platform-specific configuration:
{
"mcpServers": {
"agentaeo-mcp-server": {
"command": "npx",
"args": [
"-y",
"agentaeo-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://glama.ai/mcp/servers/agentaeo/agentaeo-mcp-server) [](https://glama.ai/mcp/servers/agentaeo/agentaeo-mcp-server)
MCP (Model Context Protocol) server for AgentAEO — run AEO (Answer Engine Optimization) audits across ChatGPT, Perplexity, Claude, and Google AI.
Source: `agentaeo/agentaeo-mcp-server` on GitHub (local folder name: agentaeo-mcp-server).
npm install -g @agentaeo/mcp-server
# or
npx @agentaeo/mcp-serverSet your API key (get one at agentaeo.com/agents):
export AGENTAEO_API_KEY=your_api_key_hereConfig file on macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"agentaeo": {
"command": "npx",
"args": ["-y", "@agentaeo/mcp-server"],
"env": {
"AGENTAEO_API_KEY": "your_api_key_here"
}
}
}
}-y skips npx’s “Ok to proceed?” prompt (important for GUI-launched processes).
Prefer `node` + `dist/index.js` — npx + a local .tgz often breaks in Claude Desktop (npm path bugs, “tarball corrupted”, or Permission denied when the shell mishandles the archive). Avoid .tgz in the MCP config unless you’ve verified it on your machine.
npm install and npm run build (must produce dist/index.js).AGENTAEO_API_KEY (not the literal text your_real_key_here).Recommended — `node` + absolute path to `dist/index.js`:
{
"mcpServers": {
"agentaeo": {
"command": "node",
"arLoading reviews...