API access to the Eligibility MCP — a deterministic eligibility-checking engine for AI agents.
WHAT IT DOES:
Check if an applicant qualifies for a grant, job, scholarship, or program based on defined criteria (age, income, documents, employment status, etc.) — returns a score, decision, and plain-language explanation.
WHO IT'S FOR:
Developers building AI agents, career tools, grant-matching platforms, or eligibility checkers for African programs.
HOW IT WORKS:
1.Subscribe below (card payment, MTN MoMo, or Airtel Money)
2.Receive your API key by email within seconds — check your inbox
3. Connect to: https://eligibility.opportunityradar.africa/mcp
4. Use Authorization: Bearer <your-key> header
3 tools included: check_eligibility, score_eligibility, explain_eligibility
check_eligibility
Input:
{
"applicant": { "age": 28, "country": "Uganda", "incomeAnnual": 4000000, "creditScore": 650 },
"criteria": { "minAge": 18, "maxAge": 35, "allowedCountries": ["Uganda","Kenya"], "minIncomeAnnual": 2000000, "minCreditScore": 600 }
}
Output:
{
"eligible": true,
"score": 100,
"summary": "Eligible with a excellent fit score of 100.",
"matchedRequirements": [
"Meets minimum age requirement of 18.",
"Country Uganda is allowed.",
"Annual income meets the minimum of 2000000.",
"Credit score meets the minimum of 600."
],
"unmetRequirements": []
}