MoMo Parser MCP
Parses Uganda Mobile Money SMS (MTN MoMo, Airtel Money) into structured transactions — amount, type, counterparty, transaction ID, balance, confidence.
What it can do
- Parse Momo Sms: Parse an MTN MoMo or Airtel Money Uganda SMS notification into a structured transaction object.
- Extract Transaction: Lightweight extraction of core transaction fields (amount, type, counterparty, transaction_id) from a mobile money SMS.
- Reconcile Payments: Match a list of expected payments against parsed mobile money transactions, returning best matches with confidence levels.
What data it sees
Do you need an account
An API key from the service settings is required
Parses Uganda Mobile Money SMS (MTN MoMo, Airtel Money) into structured transactions — amount, type, counterparty, transaction ID, balance, confidence. Includes payment reconciliation. 3 tools: parse_momo_sms, extract_transaction, reconcile_payments. API key required — purchase at selar.com/8441k20314
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" }
Server tool list (3)
Raw names from tools/list. Only developers need these.
| parse_momo_sms | Parse an MTN MoMo or Airtel Money Uganda SMS notification into a structured transaction object. |
| extract_transaction | Lightweight extraction of core transaction fields (amount, type, counterparty, transaction_id) from a mobile money SMS. |
| reconcile_payments | Match a list of expected payments against parsed mobile money transactions, returning best matches with confidence levels. |