Integrate MPPrimo ratings into your agent or application. All endpoints are free, no auth required.
https://mpprimo.com/api/ratingsReturns all rated services with scores, sorted by overall score. Only services that have been successfully tested are included.
categorystring— Filter by category (e.g., "AI", "Search", "Media")sortstring— Sort by: overall_score, accuracy_score, latency_score, reliability_score, cost_efficiency_scorelimitnumber— Max results (default 50, max 100)offsetnumber— Pagination offsetcurl "https://mpprimo.com/api/ratings?category=AI&limit=5"{
"ratings": [
{
"overall_score": 97.9,
"accuracy_score": 98.0,
"reliability_score": 100.0,
"latency_score": 93.4,
"cost_efficiency_score": 100.0,
"test_count": 10,
"notes": "High accuracy (98%) — responses consistently matched expected behavior...",
"last_tested_at": "2026-03-18T20:18:00Z",
"services": {
"id": "...",
"name": "OpenAI",
"description": "Chat completions, embeddings, image generation...",
"category": "AI",
"endpoint": "https://openai.mpp.tempo.xyz"
}
}
],
"count": 1,
"offset": 0,
"limit": 5
}/api/servicesReturns all tracked MPP services, including those not yet rated.
statusstring— Filter by status: "active" (default) or "inactive"limitnumber— Max results (default 100, max 500)offsetnumber— Pagination offsetcurl "https://mpprimo.com/api/services?limit=3"{
"services": [
{
"id": "...",
"name": "Exa",
"description": "AI-powered web search and content retrieval.",
"endpoint": "https://exa.mpp.tempo.xyz",
"category": "Search",
"status": "active",
"discovered_at": "2026-03-18T17:00:00Z"
}
],
"count": 1,
"offset": 0,
"limit": 3
}/api/recommendAI-powered recommendation — describe what your agent needs and get the best matching rated services.
taskstringrequired— What your agent needs to do (required)budgetstring— Max cost per request in USDcurl "https://mpprimo.com/api/recommend?task=search+the+web+for+recent+news"{
"task": "search the web for recent news",
"recommendations": [
{
"name": "Exa",
"reason": "AI-powered web search with high accuracy and strong reliability.",
"score": 73.8
},
{
"name": "Parallel",
"reason": "Multi-hop web research with good accuracy for complex queries.",
"score": 85.2
}
]
}