Unified MCP server for African payment providers - M-Pesa, Paystack, MTN MoMo, Airtel Money, and more
# 🌍 Africa Payments MCP
> **The missing piece for African fintech.** One MCP server. Every major African payment provider. Natural language payments.
---
## ✨ What if accepting payments was as easy as sending a message?
```bash
# "Send KES 5,000 to Mary via M-Pesa"
# "Request $100 from a customer in Nigeria"
# "Check if that MTN MoMo payment came through"
# "Process a refund for order #12345"
```
No more wrestling with 5 different APIs. No more juggling documentation.
Just natural language that works across **M-Pesa**, **Paystack**, **MTN MoMo**, and more.
See it in action with Claude, ChatGPT, Cursor, and any MCP client
---
## 🎬 See It In Action
| Demo with Claude | Demo with Cursor |
|:----------------:|:----------------:|
| | |
---
## 💡 Why Africa Payments MCP?
### The Problem 😤
Africa has the world's most innovative payment systems—M-Pesa, Paystack, Flutterwave, MTN MoMo, Chipper Cash—but integrating them is a nightmare:
- 🔀 **Fragmented APIs**: M-Pesa uses SOAP. Paystack uses REST. MTN MoMo uses something entirely different.
- 📚 **Scattered Documentation**: Hours spent hunting for the right docs
- 🔧 **Different Auth Methods**: API keys, OAuth, basic auth—each one unique
- 🐛 **Edge Cases Everywhere**: Each provider has quirks that break your code
- ⏱️ **Weeks of Integration Time**: Before you process a single payment
### The Solution 🎯
**One MCP server. Every provider. Natural language.**
```typescript
// Instead of this...
const mpesa = new MpesaAPI({ consumerKey, consumerSecret, passkey });
await mpesa.authenticate();
const result = await mpesa.stkPush({ phone, amount, accountRef });
// Just say this:
"Send KES 5,000 to 254712345678 via M-Pesa"
```
### The Impact 🚀
- ⚡ **Ship in hours, not weeks** — Your first payment working today
- 🧠 **AI-native from day one** — Built for the era of AI agents
- 🌍 **Truly Pan-African** — One integration covers the continent
- 🔓 **Open Source** — MIT licensed, community-driven
- 🛠️ **Develop …