Skip to main content
Glama
zencoder01

lipila-mcp

by zencoder01

lipila-mcp

MCP Server + Agent Skills for the Lipila payment gateway.

What's Included

MCP Server (index.js)

Expose Lipila payment tools to any MCP-compatible AI agent.

Tools:

Tool

Description

lipila_collect_mobile

Initiate MoMo collection (MTN, Airtel, Zamtel)

lipila_collect_card

Initiate card payment (Visa, MC, Amex)

lipila_disburse

Send money to mobile wallet

lipila_check_status

Check transaction status

lipila_webhook_verify

Parse webhook callback payload

Agent Skill (skills/SKILL.md)

Full API reference, workflows, and error handling for Hermes Agent.

Related MCP server: PayLink MCP Server

Setup

1. Install dependencies

npm install

2. Get your API key

3. Configure your agent

Hermes Agent — add to config.yaml:

mcp_servers:
  lipila:
    command: node
    args: ["/path/to/lipila-mcp/index.js"]
    env:
      LIPILA_API_KEY: "lsk_your_key_here"
      LIPILA_ENV: "production"  # or "sandbox"

Claude Code — add to ~/.claude/settings.json:

{
  "mcpServers": {
    "lipila": {
      "command": "node",
      "args": ["/path/to/lipila-mcp/index.js"],
      "env": {
        "LIPILA_API_KEY": "lsk_your_key_here",
        "LIPILA_ENV": "production"
      }
    }
  }
}

Codex — add to ~/.codex/config.toml:

[mcp_servers.lipila]
command = "node"
args = ["/path/to/lipila-mcp/index.js"]

[mcp_servers.lipila.env]
LIPILA_API_KEY = "lsk_your_key_here"
LIPILA_ENV = "production"

Antigravity — add to ~/.gemini/antigravity-ide/mcp_config.json:

{
  "mcpServers": {
    "lipila": {
      "command": "node",
      "args": ["/path/to/lipila-mcp/index.js"],
      "env": {
        "LIPILA_API_KEY": "lsk_your_key_here",
        "LIPILA_ENV": "production"
      }
    }
  }
}

4. Restart your agent

API Reference

Base URLs

  • Sandbox: https://api.lipila.dev/api/v1

  • Production: https://blz.lipila.io/api/v1

Authentication

All requests use x-api-key header.

Collections — Mobile Money

POST /collections/mobile-money

Field

Type

Required

referenceId

string

Yes

amount

number

Yes

narration

string

Yes

accountNumber

string

Yes

currency

string

Yes

email

string

No

Collections — Card

POST /collections/card

Same fields as mobile money.

Disbursements

POST /disbursements/mobile-money

Same fields as collections.

Transaction Status

GET /transactions/{referenceId}

Webhooks

Lipila sends callbacks with:

{
  "referenceId": "...",
  "amount": 1.75,
  "currency": "ZMW",
  "status": "Successful",
  "paymentType": "Card",
  "type": "Collection",
  "accountNumber": "260xxxxxxxxxx",
  "identifier": "TXN123456789",
  "message": "Payment completed successfully.",
  "externalId": "MP250000987654321"
}

License

MIT

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    A
    maintenance
    An MCP server that enables AI assistants to interact with Flutterwave payment services, providing tools for transaction management, payment link generation, and automated customer support.
    47
    3
    TypeScript
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Open-source MCP server that streamlines payment integration for AI agents and financial apps in Africa, providing unified tools for providers like M-Pesa.
    1
  • A
    license
    -
    quality
    D
    maintenance
    MCP server that connects AI assistants to the CinetPay API for mobile money payments across Africa, enabling balance checks, payment initialization, transfers, and more.
    13
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    An MCP server for Mobile Money in Francophone West Africa that enables AI agents to make payments via MTN MoMo (sandbox) using tools like request_payment, check_payment_status, and disburse_payment.
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP Server for agents to onboard, pay, and provision services autonomously with InFlow

  • A paid remote MCP for AI SDK MCP gateway registry, built to return verdicts, receipts, usage logs, a

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

View all MCP Connectors

Latest Blog Posts

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/zencoder01/lipila-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server