Quickstart — Code (AI client + remote tools)
Step 1 — Generate your token
- Log in to SeQura Merchant Portal
- Go to Developer → MCP Credentials
- Generate New MCP Token
- Copy the token (shown once) and note expiry (60 days)
Screenshots to add: Merchant reference, credentials page, token dialog
Step 2 — Pick your client (tabs)
Edit the config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Linux:
~/.config/Claude/claude_desktop_config.json
Add:
{
"mcpServers": {
"sequra": {
"command": "npx",
"args": [
"mcp-remote",
"https://simba.sequra.com/mcp",
"--transport",
"http-only",
"--header",
"Authorization: Bearer ${AUTH_TOKEN}"
],
"env": { "AUTH_TOKEN": "YOUR_GENERATED_TOKEN_HERE" }
}
}
}
Outside Spain:
https://simba.sequra.svea.com/mcp
Restart Claude Desktop.
Step 3 — Smoke test
Ask your client:
“List my recent disbursements for merchant ABC-123.”
Then:
“Show details for disbursement REF-12345.”
You should see settlement lines, fees, retentions, adjustments.
Updated 4 days ago