Mollie
Connect Claude, ChatGPT or Cursor to Mollie via MCP. Read payments, refunds, settlements, balances, and payment methods with an API key.
Example questions
Try asking your AI client
-
Which Mollie payments failed or are pending from the last 2 days?
-
Did the refund to Jack ever settle?
-
Summarize settlements and available balance this week.
-
Write a short payments brief for Amalie - do not create a payment.
-
Which methods are converting worst in Denmark right now?
Overview
Connect Mollie so AI clients can read payments, refunds, settlements, balances, and enabled payment methods via the Mollie Payments API.
This integration is read-first: list and get tools only. Creating payments or issuing refunds is not included.
Prerequisites
- A Mollie account with a website profile
- Permission to view Developers → API keys (account owner or admin)
- A stackgate.ai account
Getting credentials
- Sign in to the Mollie Dashboard for the merchant you want to connect.
- Open Developers → API keys.
- Copy a
test_key for sandbox work or alive_key for production. Each key is already scoped to one website profile. - In stackgate.ai, open My Integrations → Mollie.
- Paste the API key and save. stackgate.ai verifies the key against Mollie's
/methodsendpoint and stores whether it is test or live. - Optionally use Edit tool access to keep the connection read-only.
See Mollie authentication and the Payments API.
Organization access tokens can also be pasted if you need settlements or balances. Website profile keys already target one profile, so extra profile selection is not required.
Using with AI clients
- Dedicated endpoint:
POST /mcp/molliewith a Sanctum bearer token - Private gateway: one config for all integrations - use
mollie__*namespaced tools
Example prompts:
- "List my recent Mollie payments."
- "Get Mollie payment tr_WDqYK6vllg."
- "Show refunds for that payment."
- "Which payment methods are enabled on this Mollie profile?"
Troubleshooting
- 422 integration not configured - complete the API key form in My Integrations.
- 401 Unauthorized - regenerate the API key in the Mollie Dashboard and update My Integrations.
- Invalid key prefix - keys must start with
test_orlive_. - 403 on settlements or balances - those endpoints often need an organization access token, not a website profile key.
- 429 Too many requests - Mollie rate-limits burst traffic. Retry after a short delay.
Security and revocation
Disconnect Mollie in My Integrations to delete the stored key from stackgate.ai. Also revoke or rotate the key under Developers → API keys in the Mollie Dashboard.
Limitations
- Read-only MVP: no create payment, capture, cancel, or refund tools.
- Settlements and primary balance may be unavailable on website profile API keys.
- Webhook ingestion is not included. Poll
get_paymentfor status updates.
Available tools
-
list_payments
List Mollie payments for the connected profile, newest first by default.
-
get_payment
Get a Mollie payment by ID, including status, amount, method, and metadata.
-
list_refunds
List Mollie refunds. Pass payment_id to list refunds for one payment, otherwise list profile refunds.
-
get_refund
Get a Mollie refund by payment ID and refund ID.
-
list_settlements
List Mollie settlements (payout batches). May require organization-level API access.
-
get_balance
Get the primary Mollie balance (available and pending amounts). May require organization-level API access.
-
list_methods
List payment methods enabled for the connected Mollie profile.
MCP endpoint:
https://stackgate.ai/mcp/mollie
(HTTP) or via the
private gateway.