model_context_protocol · tool
aeo_weekly_report
Compose a practical weekly AEO report from a quick scan, failed checks, score movement, and prioritized next actions.
Input schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Target URL to scan for this report"
},
"previous_total_score": {
"type": "number",
"description": "Optional previous total score for week-over-week delta"
},
"failed_checks": {
"type": "array",
"items": {
"type": "string"
},
"maxItems": 20,
"description": "Optional known failed checks or business notes to include"
}
},
"required": [
"url"
]
}JSON-RPC example
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "aeo_weekly_report",
"arguments": {
"url": "https://example.com",
"previous_total_score": 1000,
"failed_checks": [
"https://competitor.example"
]
}
}
}