Install
$ agentstack add mcp-adyen-adyen-mcp ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Adyen MCP Server - Alpha
The Adyen Model Context Protocol (MCP) server allows you to integrate with Adyen APIs through LLMs function calling utilizing various clients. It currently supports the following tools. Read more on our Blog - Part 1.
- CheckoutAPI - Sessions
- Creates a /sessions payment request - POST
/sessions - Gets the result of a payment session - GET
/sessions/{sessionId}) - Gets the available payment methods - POST
/paymentMethods
- CheckoutAPI - Payment Links
- Creates a payment link - POST
/paymentLinks - Gets the status of a payment link - GET
/paymentLinks/{linkId}) - Updates a payment link (force expiry of the link) - PATCH
/paymentLinks/{linkId})
- Checkout API - Modifications
- Cancels an authorized payment - POST
/payments/{paymentPspReference}/cancels/cancels) - Refunds a captured payment - POST
/payments/{paymentPspReference}/refunds/refunds)
- Management API - Accounts
- Gets a list of merchant accounts for your company account - GET
/merchants
- Management API - Terminals
- Gets a list of terminals - GET
/terminals - Reassigns a terminal - POST
/terminals/{terminalId}/reassign/reassign) - Gets a list of Android apps - GET
/companies/{companyId}/androidApps/androidApps) - Gets Android app details - GET
/companies/{companyId}/androidApps/{id}/androidApps/(id)) - Gets a list of Android certificates - GET
/companies/{companyId}/androidCertificates/androidCertificates) - Creates a terminal action - POST
/terminals/scheduleActions - Gets a list of terminal actions - GET
/companies/{companyId}/terminalActions/terminalActions) - Gets terminal settings - GET
/companies/{companyId}/terminalSettings/terminalSettings)/ GET/merchants/{merchantId}/terminalSettings/terminalSettings)/ GET/merchants/{merchantId}/stores/{reference}/terminalSettings/stores/(reference)/terminalSettings)/ GET/terminals/{terminalId}/terminalSettings/terminalSettings) - Updates terminal settings - PATCH
/companies/{companyId}/terminalSettings/terminalSettings)/ PATCH/merchants/{merchantId}/terminalSettings/terminalSettings)/ PATCH/merchants/{merchantId}/stores/{reference}/terminalSettings/stores/(reference)/terminalSettings)/ PATCH/terminals/{terminalId}/terminalSettings/terminalSettings)
- Management API - Webhooks
- List all webhooks - GET
/companies/{companyId}/webhooks/webhooks) - List all webhooks - GET
/merchants/{merchantId}/webhooks/webhooks) - Get a webhook - GET
/companies/{companyId}/webhooks/{webhookId}/webhooks/(webhookId)) - Get a webhook - GET
/merchants/{merchantId}/webhooks/{webhookId}/webhooks/(webhookId)) - Test a webhook - POST
/companies/{companyId}/webhooks/{webhookId}/test/webhooks/(webhookId)/test) - Test a webhook - POST
/merchants/{merchantId}/webhooks/{webhookId}/test/webhooks/(webhookId)/test)
- Management API - Payment methods
- Get all payment methods - GET
/merchants/{merchantId}/paymentMethodSettings/paymentMethodSettings) - Get payment method details - GET
/merchants/{merchantId}/paymentMethodSettings/{paymentMethodId}/paymentMethodSettings/(paymentMethodId))
- Management API - Users
- Get a list of users - GET
/companies/{companyId}/users/users) - Get a list of users - GET
/merchants/{merchantId}/users/users) - Get user details - GET
companies/{companyId}/users/{userId}/users/(userId)) - Get user details - GET
merchants/{merchantId}/users/{userId}/users/(userId))
- Management API - API Credentials
- List all API Credentials - GET
/companies/{companyId}/apiCredentials/apiCredentials) - List all API Credentials - GET
/merchants/{merchantId}/apiCredentials/apiCredentials)
- Management API - Allowed Origins
- List all allowed origins - GET
/companies/{companyId}/apiCredentials/{apiCredentialId}/allowedOrigins/apiCredentials/(apiCredentialId)/allowedOrigins) - List all allowed origins - GET
/merchants/{merchantId}/apiCredentials/{apiCredentialId}/allowedOrigins/apiCredentials/(apiCredentialId)/allowedOrigins)
Usage
- Run the MCP server via
npxwith the following command:
npx -y @adyen/mcp --adyenApiKey=YOUR_ADYEN_API_KEY --env=TEST
If you are using the LIVE environment then you must also provide your live URL prefix, for example:
npx -y @adyen/mcp --adyenApiKey=YOUR_ADYEN_API_KEY --env=LIVE --livePrefix=YOUR_PREFIX_URL
We advise to only run a subset of tools required for your particular use case:
npx -y @adyen/mcp --adyenApiKey=YOUR_ADYEN_API_KEY --env=TEST --tools=list_all_company_webhooks,list_all_merchant_webhooks
Example usage in .vscode:
{
"servers": {
"adyen-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@adyen/mcp", "--adyenApiKey=YOUR_ADYEN_API_KEY", "--env=TEST"],
"env": {
"ADYEN_API_KEY": "${ADYEN_API_KEY}"
}
}
}
}
Note: To run certain functionality (tools) in the mcp-server, you need a webservice user with the following roles:
- Management API - Accounts Read
- Management API - Payment methods Read
- Checkout Webservice Role
- Merchant PAL Webservice Role
- Management API - Terminals read
- Management API — Assign Terminal
- Management API — Terminal actions read
- Management API — Terminal actions read and write
- Management API — Android files read
- Management API — Terminal settings read
- Management API — Terminal settings read and write
- Management API — Webhooks read
- Management API — Webhooks read and write
- Management API — Payment methods read
- Management API — API credentials read
- Trigger webhook notifications
Adyen recommends creating a new webservice user and generating a new API key for the purpose of this application. Only use the new user’s API key for the MCP application and limit the roles to match the tools you'll be using.
License
MIT license. For more information, see the LICENSE file.
Contributing
We strongly encourage you to contribute to our repository. Find out more in our contribution guidelines. If you'd like to run this in [Codespaces, follow this guide](/CODESPACES_README.md).
Support
If you have a feature request, or spotted a bug or a technical problem, create a GitHub issue. For other questions, contact: devrel@adyen.com
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Adyen
- Source: Adyen/adyen-mcp
- License: MIT
- Homepage: https://adyen.com
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.