Skip to content
MCP-Bridge
Security

Legal Entity Management API Claude Desktop Config

Add the Legal Entity Management API MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "adyen-com-legalentityservice": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/adyen-com-legalentityservice"
      ],
      "env": {
        "LEGAL_ENTITY_MANAGEMENT_API_API_KEY": "your_legal_entity_management_api_api_key"
      }
    }
  }
}

Environment Variables

LEGAL_ENTITY_MANAGEMENT_API_API_KEY

Replace your_legal_entity_management_api_api_key with your actual legal entity management api api key

Endpoints

POST/businessLines

Create a business line

GET/businessLines/{id}

Get a business line

DELETE/businessLines/{id}

Delete a business line

POST/documents

Upload a document for verification checks

GET/documents/{id}

Get a document

DELETE/documents/{id}

Delete a document

PATCH/documents/{id}

Update a document

POST/legalEntities

Create a legal entity

GET/legalEntities/{id}

Get a legal entity

PATCH/legalEntities/{id}

Update a legal entity