Skip to content
MCP-Bridge
Security

Configuration API MCP Config

The Configuration API enables you to create a platform where you can onboard your users as account holders and create balance accounts, cards, and business accounts. ## Authentication Your Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` heade

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcp-bridge.pages.dev/config/adyen-com-balanceplatformservice.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/adyen-com-balanceplatformservice.json to fetch programmatically.

{
  "mcpServers": {
    "adyen-com-balanceplatformservice": {
      "command": "npx",
      "args": ["-y","@mcp/adyen-com-balanceplatformservice"],
      "env": {
      "CONFIGURATION_API_API_KEY": "your_configuration_api_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcp-bridge.pages.dev/config/adyen-com-balanceplatformservice.json

Environment Variables

CONFIGURATION_API_API_KEY

Replace your_configuration_api_api_key with your actual configuration api api key

Endpoints

POST/accountHolders

Create an account holder

GET/accountHolders/{id}

Get an account holder

PATCH/accountHolders/{id}

Update an account holder

GET/accountHolders/{id}/balanceAccounts

Get all balance accounts of an account holder

POST/balanceAccounts

Create a balance account

GET/balanceAccounts/{id}

Get a balance account

PATCH/balanceAccounts/{id}

Update a balance account

GET/balanceAccounts/{id}/paymentInstruments

Get all payment instruments for a balance account

GET/balancePlatforms/{id}

Get a balance platform

GET/balancePlatforms/{id}/accountHolders

Get all account holders under a balance platform