data
Mollie MCP, CLI, and Lua Integration for AI Agents
Mollie integration docs for AI agents: MCP gateway setup, Mollie CLI commands, Lua API reference, credentials, and function schemas.Mollie for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
mollie.mollie_list_payments | Read read | 3 | List payments from Mollie. Returns payment resources with status, amount, and metadata. Use filters like profileId to narrow results. |
mollie.mollie_get_payment | Read read | 1 | Retrieve a single Mollie payment by its ID. Returns the full payment resource with status, amount, and checkout links. |
mollie.mollie_create_payment | Write write | 6 | Create a new Mollie payment. Requires amount (currency and value), description, and a redirectUrl. Returns the payment resource with a checkout link. |
mollie.mollie_list_customers | Read read | 2 | List all customers from Mollie. Returns customer resources with name, email, and metadata. |
mollie.mollie_create_customer | Write write | 4 | Create a new Mollie customer. Requires name and email. Returns the customer resource with an ID for creating subscriptions. |
mollie.mollie_list_subscriptions | Read read | 3 | List all subscriptions for a specific Mollie customer. Requires a customer ID (e.g., "cst_abc123"). Returns subscription resources with status, amount, and interval. |
mollie.mollie_create_subscription | Write write | 9 | Create a subscription for a Mollie customer. Requires customer ID, amount (currency and value), interval (e.g., "1 month"), and description. |
mollie.mollie_list_invoices | Read read | 5 | List invoices for the authenticated Mollie account. Supports filtering by year, month, and reference. |
mollie.mollie_get_current_user | Read read | 0 | Retrieve the enabled payment methods for the authenticated Mollie account. Returns a list of available payment methods (e.g., iDEAL, credit card, PayPal). |