Skip the install. Get this working in under 2 minutes.
Start a free trial on cloud.anythingmcp.com, add the Mollie in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.
Summary
Drive Mollie (EU-friendly payments) from any AI agent: payments, refunds, customers, subscriptions, mandates, methods. 14 tools, Bearer auth.
Попробуй спросить
Примеры промптов для Mollie
Кликни по промпту — он скопируется. Вставь в Claude, ChatGPT, Cursor, Gemini, Copilot или OpenClaw и запусти через этот коннектор.
Claude — это AI, он может ошибаться. Проверяйте ответы.
💡 Без установки? Используй cloud.anythingmcp.com напрямую. Войди, нажми Connectors → Mollie, вставь учётные данные, создай MCP API key — готово. Без Docker, без
git clone, без локального сервера.
Mollie
Drive Mollie (EU-friendly payments) from any AI agent: payments, refunds, customers, subscriptions, mandates, methods. 14 tools, Bearer auth.
Настройка
mollie.com/reference).
Setup:
- Sign in to https://my.mollie.com → Developers → API keys.
- Use a test key (
test_...) for development, live key (live_...) for production. - Set
MOLLIE_API_KEYaccordingly. (Mollie tells you which environment via the key prefix.)
Authentication: Authorization: Bearer ${MOLLIE_API_KEY}.
Amount format: every monetary amount is {currency: 'EUR', value: '10.00'} — value is a STRING with exactly 2 decimals (or whatever the currency requires). Sending value: 10 (number) errors.
Payment lifecycle: created → open → pending → authorized → paid (success) | canceled | expired | failed.
…(continued in the in-app connector instructions)
Предварительные требования: MOLLIE_API_KEY
Локальная установка коннектора
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Открой http://localhost:3000/connectors/store, выбери Mollie и введи переменные, перечисленные в Предварительных требованиях.
Доступные инструменты
| Tool | What it does |
|---|---|
mollie_list_methods | List payment methods enabled for the profile |
mollie_create_payment | Create a payment |
mollie_get_payment | Fetch a payment by ID |
mollie_list_payments | List payments |
mollie_cancel_payment | Cancel a payment in 'open' state (before customer pays) |
mollie_create_refund | Refund a paid payment |
mollie_list_refunds | List refunds (across all payments by default; pass paymentId for per-payment) |
mollie_create_customer | Create a Mollie customer (required for recurring subscriptions, optional for one-off payments) |
mollie_list_customers | List customers |
mollie_create_subscription | Create a subscription for a customer |
mollie_cancel_subscription | Cancel a subscription (stops future charges immediately) |
mollie_list_subscriptions | List subscriptions for a customer |
mollie_list_mandates | List mandates (pre-authorized payment methods) on a customer |
mollie_revoke_mandate | Revoke a mandate (stops future recurring charges using it) |
Следующие шаги
Это руководство помогло?