MCP server for MakePay. It lets AI agents create payment links, inspect payment state, create bookkeeping invoices, create invoice payment links, and reconcile records through the MakePay partner API.
npm install
npm run buildSet credentials in the MCP host environment:
export MAKEPAY_KEY_ID="..."
export MAKEPAY_KEY_SECRET="..."Optional:
export MAKEPAY_BASE_URL="https://www.makecrypto.io"
export MAKEPAY_CHECKOUT_BASE_URL="https://makepay.io"Never expose MAKEPAY_KEY_SECRET to browser clients, mobile apps, or public
logs.
{
"mcpServers": {
"makepay": {
"command": "node",
"args": ["/absolute/path/to/makepay-mcp-server/dist/index.js"],
"env": {
"MAKEPAY_KEY_ID": "your_key_id",
"MAKEPAY_KEY_SECRET": "your_key_secret"
}
}
}
}makepay_create_payment_linkmakepay_get_payment_linkmakepay_list_payment_linksmakepay_list_destination_assetsmakepay_create_customermakepay_create_bookkeeping_invoicemakepay_create_invoice_payment_linkmakepay_get_bookkeeping_summarymakepay_create_bookkeeping_reconciliation
npm run validateMaintainer: Ethan Carter (makepayio).