European payment service provider.
## Mollie MCP Server: European Payments The **Mollie MCP Server** integrates Mollie's European payment platform into Google Antigravity, enabling developers to process payments with popular European methods through AI-assisted payment workflows. ### Why Mollie MCP? - **European Focus**: iDEAL, Bancontact, SOFORT, and local methods - **Simple Pricing**: Transparent per-transaction pricing - **Easy Integration**: Developer-friendly APIs and SDKs - **Multi-Currency**: Accept payments in multiple currencies - **Recurring Payments**: Built-in subscription support ### Key Features #### 1. Payment Processing ```javascript // Create payment const payment = await mollie.createPayment({ amount: { value: "99.99", currency: "EUR" }, description: "Order #12345", redirectUrl: "https://shop.com/order/success", webhookUrl: "https://shop.com/webhooks/mollie", method: "ideal", metadata: { orderId: "12345" } }); // Get available payment methods const methods = await mollie.listMethods({ amount: { value: "99.99", currency: "EUR" }, locale: "nl_NL" }); // Get payment status const paymentStatus = await mollie.getPayment({ id: payment.id }); // Create refund await mollie.createRefund({ paymentId: payment.id, amount: { value: "49.99", currency: "EUR" } }); ``` #### 2. Subscriptions and Orders ```javascript // Create customer const customer = await mollie.createCustomer({ name: "John Doe", email: "john@example.com" }); // Create subscription const subscription = await mollie.createSubscription({ customerId: customer.id, amount: { value: "19.99", currency: "EUR" }, interval: "1 month", description: "Monthly subscription" }); // Create order (with multiple items) const order = await mollie.createOrder({ amount: { value: "149.99", currency: "EUR" }, orderNumber: "ORD-12345", lines: [ { name: "Product A", quantity: 1, unitPrice: { value: "99.99", currency: "EUR" }, totalAmount: { value: "99.99", currency: "EUR" } } ], billingAddress: billingData }); ``` ### Configuration ```json { "mcpServers": { "mollie": { "command": "npx", "args": ["-y", "@anthropic/mcp-mollie"], "env": { "MOLLIE_API_KEY": "your-api-key" } } } } ``` ### Use Cases **European Commerce**: Accept payments with popular European methods. **Subscription Billing**: Implement recurring payments for SaaS. **Multi-Country**: Process payments across European markets. The Mollie MCP Server brings European payment methods to your e-commerce workflow.
{
"mcpServers": {
"mollie": {}
}
}