model_context_protocol · tool
aeo_scan
Run a full 53-point AEO-Pro scan on a URL. Returns SEO, AEO (AI Engine Optimisation) and GEO scores, a letter grade, and the full check list with pass/fail status.
Input schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Target URL to scan, for example https://example.com"
},
"mode": {
"type": "string",
"enum": [
"full",
"quick"
],
"description": "full = all 53 checks; quick = core checks only"
}
},
"required": [
"url"
]
}JSON-RPC example
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "aeo_scan",
"arguments": {
"url": "https://example.com",
"mode": "https://example.com"
}
}
}