other
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.
9 functions 6 read 3 write Bearer token auth
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.
Machine-Readable Metadata
- integration_slug
mollie- route_slug
mollie- package
mollie- auth_strategy
bearer_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Mollie CLIHeadless setup and direct function calls. Mollie MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Mollie MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Mollie.
Claude Code Mollie MCP setup for Claude Code. Cursor Mollie MCP setup for Cursor. Codex Mollie MCP setup for Codex. OpenAI Agents Mollie MCP setup for OpenAI Agents SDK. Claude Agent SDK Mollie MCP setup for Claude Agent SDK. Vercel AI SDK Mollie MCP setup for Vercel AI SDK. LangChain Mollie MCP setup for LangChain. LangGraph Mollie MCP setup for LangGraph. CrewAI Mollie MCP setup for CrewAI. MCP clients Mollie MCP setup for Generic MCP Clients.
Mollie CLI Matrix
Use these pages for direct Mollie CLI workflows in scripts, CI, cron, and agent wrappers.
CI Mollie CLI for CI. Cron Jobs Mollie CLI for cron jobs. Shell Scripts Mollie CLI for shell scripts. Headless Automation Mollie CLI for headless automation. Coding Agents Mollie CLI for coding agents.
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). |