Quick Start

Step 1: Generate Your MCP Token

  1. Login to your SeQura Merchant Portal
  2. Navigate to DeveloperMCP Credentials
  1. Click "Generate New MCP Token"
  2. Copy the generated token ⚠️ Important: This token will only be shown once
  3. Note the expiration date (60 days by default)

Step 2: Configure Your AI Client

For Claude Desktop

  1. Open your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • Linux: ~/.config/Claude/claude_desktop_config.json
  2. Add the SeQura MCP server configuration:

{
  "mcpServers": {
    "sequra": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://simba.sequra.com//mcp", // and if you are outside of Spain: https://simba.sequra.svea.com/mcp
        "--transport",
        "http-only",
        "--header",
        "Authorization: Bearer ${AUTH_TOKEN}"
      ],
      "env": {
        "AUTH_TOKEN": "YOUR_GENERATED_TOKEN_HERE"
      }
    }
  }
}
  1. Replace YOUR_GENERATED_TOKEN_HERE with your actual MCP token
  2. Restart Claude Desktop

For Cursor IDE

  1. Open Cursor settings (Cmd/Ctrl + ,)

  2. Navigate to FeaturesModel Context Protocol

  3. Add a new MCP server:

    • Name: SeQura
    • Command: npx
    • Args:
      mcp-remote
      https://simba.sequra.com/mcp
      --transport
      http-only
      --header
      Authorization: Bearer YOUR_GENERATED_TOKEN_HERE

  4. If you are outside of Spain: https://simba.sequra.svea.com/mcp

  5. Replace YOUR_GENERATED_TOKEN_HERE with your actual token

  6. Save and restart Cursor

Step 3: Test Your Connection

Try asking your AI assistant, in case you have more merchants and want to list disbursements from one of them:

"List my recent disbursements for merchant ABC-123"

If configured correctly, you should see your SeQura disbursement data formatted as a response.

"Can I get more details of the disbursement REF-12345?"

Here you should have a more detailed disbursement response.