Aza MCP
Aza MCP lets you manage your Azabill wallet and purchase Nigerian mobile airtime and data bundles directly from your AI coding assistant.
Check your wallet (
aza_wallet): View your account name, current wallet balance, and remaining daily spending limit.List supported networks (
aza_list_networks): Retrieve available mobile networks — MTN, Glo, Airtel, and 9mobile.Browse data plans (
aza_list_data_plans): List all available data bundles for a specific network, including plan codes and prices.Buy airtime (
aza_buy_airtime): Purchase airtime in naira for any Nigerian phone number on a supported network, charged to your Aza wallet.Buy data bundles (
aza_buy_data): Purchase a specific data bundle (by plan code fromaza_list_data_plans) for any Nigerian phone number, charged to your Aza wallet.View recent transactions (
aza_transactions): See the most recent airtime, data, or bill purchases on your account (up to 50 at a time).
Provides tools to buy Airtel airtime and data bundles, list data plans, and manage transactions for Nigerian Airtel numbers.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Aza MCPCheck my Aza wallet balance"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Aza MCP
Buy airtime and data — and check your wallet — from your own Azabill account, without leaving your code editor.
Aza MCP is a Model Context Protocol server that connects your Azabill wallet to any AI coding assistant. Once connected, you just tell your assistant "send ₦200 MTN airtime to 0803…" while you code, and it runs on your wallet — no context switch, no dashboard.
Works with any MCP client: Claude Desktop, Claude Code, Cursor, VS Code (Copilot), Windsurf, and others.
What you can do: buy airtime, buy data bundles, list data plans, check your wallet balance, and view recent transactions — for any Nigerian number (MTN, Glo, Airtel, 9mobile), straight from your editor's chat.
1. Connect your account (get an API key)
Your Aza account connects to the MCP through a personal API key — no password or PIN ever leaves your machine.
Open the Aza web app: app.azabill.ng and log in.
Go to Profile → Developers.
Click Create API key, give it a name (e.g. "Cursor on my laptop") and a daily spending cap (default ₦2,000/day).
Copy the key — it looks like
aza_live_xxxxxxxx. It's shown once.
The key spends only from your wallet and can never exceed the daily cap you set. Lost a laptop? Revoke the key on that same screen and it stops working instantly.
Make sure your Aza wallet is funded (fund it in the app) — purchases draw from your balance.
Related MCP server: Mono Banking MCP Server
2. Add it to your editor
Use npx so there's nothing to install or keep updated. Replace aza_live_… with your key.
Claude Desktop
Edit claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"aza": {
"command": "npx",
"args": ["-y", "aza-mcp"],
"env": { "AZA_API_KEY": "aza_live_xxxxxxxx" }
}
}
}Claude Code
claude mcp add aza --env AZA_API_KEY=aza_live_xxxxxxxx -- npx -y aza-mcpCursor
Settings → MCP → Add new server, or edit ~/.cursor/mcp.json:
{
"mcpServers": {
"aza": {
"command": "npx",
"args": ["-y", "aza-mcp"],
"env": { "AZA_API_KEY": "aza_live_xxxxxxxx" }
}
}
}VS Code (GitHub Copilot / Agent mode)
.vscode/mcp.json in your workspace:
{
"servers": {
"aza": {
"command": "npx",
"args": ["-y", "aza-mcp"],
"env": { "AZA_API_KEY": "aza_live_xxxxxxxx" }
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json — same mcpServers block as Claude Desktop above.
Restart the editor after saving. You should see the aza tools appear.
3. Use it
Just talk to your assistant:
"What's my Aza balance?"
"List MTN data plans."
"Buy ₦100 Airtel airtime for 0803…."
"Send the 1GB MTN plan to 0810…."
"Show my last 5 Aza transactions."
Your editor will ask you to approve each action before it runs.
Tools
Tool | What it does |
| Account name, wallet balance, and today's remaining spend on the key |
| Supported networks (MTN, Glo, Airtel, 9mobile) |
| Data bundles + plan codes + prices for a network |
| Buy airtime (naira) for a number |
| Buy a data bundle (by plan code) for a number |
| Recent purchases |
Configuration
Env var | Required | Default | Notes |
| yes | — | Your |
Safety
Daily cap — every key has a per-day naira limit you set; the server refuses a purchase that would exceed it.
Revocable — revoke a key anytime in the web app; it stops working immediately.
No secrets in your repo — the key lives in your MCP config, not your code. Don't commit it.
Idempotent — each purchase carries an idempotency key, so a network retry never charges twice.
Run locally (development)
git clone https://github.com/Abdulkereem/aza-mcp.git && cd aza-mcp
npm install
AZA_API_KEY=aza_live_xxxx node src/index.jsLicense
MIT — © CodeMatrix Consult LTD (Azabill)
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables users to manage airtime transactions through the Africa's Talking API, allowing them to check account balance, send airtime to phone numbers, view transaction history, and analyze top-up patterns across supported African countries.52MIT
- Alicense-qualityDmaintenanceEnables AI assistants to perform Nigerian banking operations including account management, payments, and identity verification through the Mono Open Banking API.59MIT
- Alicense-qualityFmaintenanceEnables AI assistants to accept payments, verify transactions, and manage customers via Paystack API through natural language.MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to search for and purchase gift cards, mobile topups, and digital products via Bitrefill, with tools for managing invoices, orders, and account balance.1236MIT
Related MCP Connectors
Nigeria payments for AI agents — bank transfer / USSD via Paystack. Never holds funds.
Zambia payments for AI agents — mobile money via Flutterwave. Never holds funds.
Provide AI agents and automation tools with contextual access to blockchain data including balance…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Abdulkereem/aza-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server