API access to the MoMo Parser MCP — parses MTN MoMo and Airtel Money Uganda SMS notifications into structured JSON instantly.
WHAT IT DOES:
Parse any mobile money SMS into clean structured data: amount, sender, transaction ID, balance, timestamp — all extracted automatically.
WHO IT'S FOR:
Developers building fintech apps, expense trackers, accounting tools, or AI agents that need to read mobile money transactions.
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://momo.opportunityradar.africa/mcp
4. Use Authorization: Bearer <your-key> header
3 tools: parse_momo_sms / extract_transaction / reconcile_payments
EXAMPLE
Input:
{ "sms_text": "You have received UGX 50,000 from JOHN OKELLO. Bal: UGX 120,500. TXN ID: 12345678. 23/05/2025 10:30" }
Output:
{
"provider": "mtn",
"type": "received",
"amount": 50000,
"counterparty_name": "JOHN OKELLO",
"balance_after": 120500,
"transaction_id": "12345678",
"currency": "UGX",
"timestamp": "2025-05-23T10:30:00.000Z",
"confidence": "high",
"parse_method": "regex"
}
extract_transaction
Input: { "sms_text": "UGX 15,000 sent to MTN DATA. TXN ID: 99887766." }
Output: { "amount": 15000, "type": "sent", "counterparty_name": "MTN DATA", "transaction_id": "99887766" }