model_context_protocol · tool
aeo_verify_citation
Verify whether an AI response cites a target brand and URL using the local citation matcher.
Input schema
{
"type": "object",
"properties": {
"ai_response": {
"type": "string",
"description": "AI answer text to inspect"
},
"target_url": {
"type": "string",
"description": "Canonical target URL expected in the response"
},
"brand_name": {
"type": "string",
"description": "Brand or entity name expected in the response"
}
},
"required": [
"ai_response",
"target_url",
"brand_name"
]
}JSON-RPC example
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "aeo_verify_citation",
"arguments": {
"ai_response": "https://example.com",
"target_url": "https://example.com",
"brand_name": "https://example.com"
}
}
}