Global payment platform for enterprise.
## Adyen MCP Server: Global Payments The **Adyen MCP Server** integrates Adyen's global payment platform into Google Antigravity, enabling developers to process payments, manage subscriptions, and handle refunds through AI-assisted payment workflows. ### Why Adyen MCP? - **Global Coverage**: Accept payments in 150+ currencies worldwide - **Unified Commerce**: Online, in-store, and mobile payments in one platform - **Risk Management**: AI-powered fraud detection and prevention - **Revenue Optimization**: Smart routing and retry logic - **Enterprise Ready**: PCI DSS Level 1 certified ### Key Features #### 1. Payment Processing ```javascript // Create payment const payment = await adyen.makePayment({ amount: { value: 9999, currency: "USD" }, reference: "order_123", paymentMethod: { type: "scheme", encryptedCardNumber: "...", encryptedExpiryMonth: "...", encryptedExpiryYear: "...", encryptedSecurityCode: "..." }, returnUrl: "https://yourshop.com/checkout/result", merchantAccount: "YourMerchantAccount" }); // Handle 3D Secure if (payment.action) { // Redirect for authentication const result = await adyen.handleAction(payment.action); } // Capture payment await adyen.capturePayment({ paymentPspReference: payment.pspReference, amount: { value: 9999, currency: "USD" } }); ``` #### 2. Refunds and Reports ```javascript // Process refund await adyen.refundPayment({ paymentPspReference: "PSP_REFERENCE", amount: { value: 4999, currency: "USD" }, reference: "refund_123" }); // Get payment details const details = await adyen.getPaymentDetails({ pspReference: "PSP_REFERENCE" }); // List transactions const transactions = await adyen.getTransactions({ merchantAccount: "YourMerchantAccount", createdAfter: "2024-12-01T00:00:00Z" }); ``` ### Configuration ```json { "mcpServers": { "adyen": { "command": "npx", "args": ["-y", "@anthropic/mcp-adyen"], "env": { "ADYEN_API_KEY": "your-api-key", "ADYEN_MERCHANT_ACCOUNT": "your-merchant-account", "ADYEN_ENVIRONMENT": "live" } } } } ``` ### Use Cases **E-commerce Payments**: Process online payments with fraud protection. **Subscription Billing**: Manage recurring payments and subscriptions. **Omnichannel Commerce**: Unify online and in-store payment experiences. The Adyen MCP Server brings enterprise-grade payments to your development workflow.
{
"mcpServers": {
"adyen": {}
}
}