No install? Use cloud.anythingmcp.com directly.
Sign in, install the Mollie in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
💡 无需安装? 直接使用 cloud.anythingmcp.com。 登录、点击 Connectors → Mollie、粘贴凭证、生成 MCP API key — 完成。无 Docker、无
git clone、无本地服务器。
Mollie + ChatGPT
Drive Mollie (EU-friendly payments) from any AI agent: payments, refunds, customers, subscriptions, mandates, methods. 14 tools, Bearer auth.
前提条件
完整的设置说明已内置在连接器中 (在 store 中选择连接器时可见)。所需环境变量:
MOLLIE_API_KEY
步骤 1 — 获取凭证
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)
步骤 2 — 安装 adapter
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
步骤 3 — 在 ChatGPT 中添加连接器
ChatGPT 通过 Connectors 功能 (Plus / Pro / Team / Enterprise 套餐) 支持 MCP 服务器。免费套餐不支持自定义连接器。
- 打开 ChatGPT → Settings → Connectors (或点击 composer 中的 🔧 图标 → Manage connectors)。
- 点击 "Add custom connector"。
- 填入:
- Name:
Mollie - MCP server URL:
https://cloud.anythingmcp.com/mcp - Authentication: Bearer token → 粘贴 MCP API key
- Name:
- 点击 Connect。
可用工具
| 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) |
FAQ
ChatGPT 免费套餐能用自定义 MCP Connectors 吗? 不能 — 需要 Plus、Pro、Team 或 Enterprise。