Skip to content

Commit e5ac06f

Browse files
authored
Add Mollie MCP server (#213)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent cb26b23 commit e5ac06f

1 file changed

Lines changed: 66 additions & 0 deletions

File tree

servers/com.mollie-mcp.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.mollie-mcp",
4+
"name": "Mollie",
5+
"alias": "mollie",
6+
"description": "Manage Mollie payments, payment links, customers, subscriptions, settlements, invoices, and more through Mollie's official hosted MCP endpoint. Acts as a proxy for the Mollie public API.",
7+
"logo": "https://avatars.githubusercontent.com/u/1327170?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"mollie",
14+
"payments",
15+
"fintech",
16+
"billing",
17+
"subscriptions"
18+
],
19+
"transport": {
20+
"type": "http",
21+
"url": "https://mcp.mollie.com/mcp",
22+
"headers": {
23+
"Authorization": "Bearer ${input:MOLLIE_ACCESS_TOKEN}"
24+
},
25+
"metadata": {
26+
"inputs": [
27+
{
28+
"id": "MOLLIE_ACCESS_TOKEN",
29+
"label": "Mollie Access Token",
30+
"description": "A Mollie Advanced (Organization) access token. Requires the profile.read scope (mandatory); add scopes for the APIs you want to enable (Payments, Payment Links, Customers, Mandates, Subscriptions, Settlements, Invoices, Balances, Captures, Methods, Terminals, Webhooks, Webhook Events). Sent as 'Authorization: Bearer <token>'.",
31+
"type": "text",
32+
"required": true,
33+
"secret": true,
34+
"placeholder": "************************************",
35+
"obtain": {
36+
"url": "https://my.mollie.com/dashboard/developers/api-keys",
37+
"instructions": "1. Sign in to the Mollie dashboard\n2. Generate an Advanced (Organization) access token via the dashboard or the OAuth flow\n3. Assign the required profile.read scope plus any optional API scopes you need\n4. Copy the token",
38+
"button_label": "Open Mollie Dashboard"
39+
}
40+
}
41+
]
42+
}
43+
},
44+
"auth": {
45+
"type": "api_key",
46+
"instructions": "Authenticate with a Mollie Advanced (Organization) access token sent as a Bearer token in the Authorization header. The token must include the profile.read scope plus scopes for any APIs you want to use. Obtain one from the Mollie dashboard."
47+
},
48+
"contributor": {
49+
"name": "Mollie",
50+
"github": "mollie",
51+
"url": "https://www.mollie.com"
52+
},
53+
"links": {
54+
"homepage": "https://www.mollie.com",
55+
"documentation": "https://docs.mollie.com/docs/mollie-mcp-server"
56+
},
57+
"platforms": [
58+
"all"
59+
],
60+
"capabilities": {
61+
"tools": true,
62+
"resources": false,
63+
"prompts": false,
64+
"read_only_mode": false
65+
}
66+
}

0 commit comments

Comments
 (0)