model_context_protocol · tool
aeo_revenue_score
Compute a deterministic AEO revenue opportunity score from supplied business metrics. No external calls.
Input schema
{
"type": "object",
"properties": {
"monthly_visitors": {
"type": "number",
"description": "Monthly organic or qualified visitors"
},
"conversion_rate": {
"type": "number",
"description": "Conversion rate as 0.02 or 2 for 2%"
},
"average_order_value": {
"type": "number",
"description": "Average order value or lead value"
},
"citation_rate": {
"type": "number",
"description": "Optional AI citation rate as 0.25 or 25 for 25%"
},
"current_aeo_score": {
"type": "number",
"description": "Optional current AEO score, 0-100"
}
},
"required": [
"monthly_visitors",
"conversion_rate",
"average_order_value"
]
}JSON-RPC example
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "aeo_revenue_score",
"arguments": {
"monthly_visitors": 1000,
"conversion_rate": 1000,
"average_order_value": 1000,
"citation_rate": 1000,
"current_aeo_score": 1000
}
}
}