Global enterprise payments used by iFood, Uber, Spotify, and AirBnB in LatAm. The one gateway enterprise merchants choose when a single contract has to cover BR + EU + US + APAC. Checkout v71 (payments, methods, links, donations, sessions, stored methods).
Adyen gives your agent 25 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
create_payment β Create a payment. Pass paymentMethod (type + tokenized fields), amount, reference, returnUrl. merchantAccount is injected automatically from env.payment_details β Submit additional details for a payment (3DS challenge response, redirect returnUrl payload, etc).capture_payment β Capture an authorized payment (for delayed-capture flows).// Your agent calls a tool directly β no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_payment", { /* ... */ });$ npm install @codespar/mcp-adyenAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"adyen": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-adyen"
],
"env": {
"ADYEN_API_KEY": "<your_adyen_api_key>",
"ADYEN_MERCHANT_ACCOUNT": "<your_adyen_merchant_account>"
}
}
}
}After restart, your agent can call any of the 25 tools below β try create_payment first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
ADYEN_API_KEYAdyen API key (generated in Customer Area β Developers β API credentials)
ADYEN_MERCHANT_ACCOUNTAdyen merchant account code (appears in most request bodies)
ADYEN_ENVtest | live. Defaults to test.
ADYEN_LIVE_URL_PREFIXRequired when ADYEN_ENV=live. Your merchant-specific prefix, e.g. 1797a841fbb37ca7-AdyenDemo
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_paymentpayment_detailscapture_paymentcancel_paymentrefund_paymentreverse_paymentupdate_amountget_payment_methodsMCP is a protocol β any framework that speaks it can mount this server.