Skip to content

Commit 2843505

Browse files
committed
Add MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 14015a9 commit 2843505

1 file changed

Lines changed: 106 additions & 0 deletions

File tree

servers/com.adyen-mcp-npx.json

Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.adyen-mcp-npx",
4+
"name": "Adyen (npx)",
5+
"alias": "adyen",
6+
"description": "Integrate with Adyen's Checkout and Management APIs via natural language. Create payment sessions and payment links, issue refunds and cancellations, and manage merchant accounts, terminals, webhooks, payment methods, users, and API credentials.",
7+
"logo": "https://avatars.githubusercontent.com/u/9713612?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"adyen",
14+
"payments",
15+
"finance",
16+
"checkout",
17+
"fintech",
18+
"billing"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"@adyen/mcp",
26+
"--adyenApiKey=${input:ADYEN_API_KEY}",
27+
"--env=${input:ADYEN_ENVIRONMENT}"
28+
],
29+
"env": {
30+
"ADYEN_API_KEY": "${input:ADYEN_API_KEY}",
31+
"ADYEN_ENVIRONMENT": "${input:ADYEN_ENVIRONMENT}",
32+
"ADYEN_LIVE_URL_PREFIX": "${input:ADYEN_LIVE_URL_PREFIX}"
33+
},
34+
"metadata": {
35+
"inputs": [
36+
{
37+
"id": "ADYEN_API_KEY",
38+
"label": "Adyen API Key",
39+
"description": "API key for a dedicated webservice user. Adyen recommends creating a new webservice user with only the roles needed for the tools you use (e.g. Merchant PAL webservice role, Checkout webservice role, Management API roles). Generate it in your Adyen Customer Area.",
40+
"type": "text",
41+
"required": true,
42+
"secret": true,
43+
"placeholder": "AQE********************************",
44+
"obtain": {
45+
"url": "https://ca-test.adyen.com/ca/ca/config/api_credentials_new.shtml",
46+
"instructions": "1. Sign in to your Adyen Customer Area\n2. Go to Developers > API credentials\n3. Create (or select) a webservice user (recommended: a dedicated one for the MCP server)\n4. Assign only the roles you need (e.g. Checkout webservice role, Merchant PAL webservice role, Management API roles)\n5. Under Authentication, generate an API key\n6. Copy the generated API key",
47+
"button_label": "Open Customer Area"
48+
}
49+
},
50+
{
51+
"id": "ADYEN_ENVIRONMENT",
52+
"label": "Environment",
53+
"description": "Which Adyen environment to target. Use TEST while developing; switch to LIVE for production (LIVE also requires your live URL prefix).",
54+
"type": "select",
55+
"required": true,
56+
"default": "TEST",
57+
"options": [
58+
{
59+
"value": "TEST",
60+
"label": "Test",
61+
"description": "Adyen test environment"
62+
},
63+
{
64+
"value": "LIVE",
65+
"label": "Live",
66+
"description": "Adyen live (production) environment - requires the live URL prefix"
67+
}
68+
]
69+
},
70+
{
71+
"id": "ADYEN_LIVE_URL_PREFIX",
72+
"label": "Live URL Prefix",
73+
"description": "Required only when Environment is LIVE. Your Adyen live URL prefix, found in your live Customer Area under Developers > API URLs > Prefix. Leave empty for TEST.",
74+
"type": "text",
75+
"required": false,
76+
"secret": false,
77+
"placeholder": "1797a841fbb37ca7-AdyenDemo"
78+
}
79+
]
80+
}
81+
},
82+
"auth": {
83+
"type": "api_key",
84+
"instructions": "Generate an API key for a webservice user in your Adyen Customer Area under Developers > API credentials. Limit the user's roles to match the tools you plan to use."
85+
},
86+
"contributor": {
87+
"name": "Adyen",
88+
"github": "Adyen",
89+
"url": "https://www.adyen.com"
90+
},
91+
"links": {
92+
"repository": "https://github.com/Adyen/adyen-mcp",
93+
"homepage": "https://www.adyen.com",
94+
"documentation": "https://docs.adyen.com/development-resources/mcp-server"
95+
},
96+
"platforms": [
97+
"all"
98+
],
99+
"capabilities": {
100+
"tools": true,
101+
"resources": false,
102+
"prompts": false,
103+
"read_only_mode": false
104+
},
105+
"changelog_url": "https://github.com/Adyen/adyen-mcp/releases"
106+
}

0 commit comments

Comments
 (0)