Colombian acquirer with a clean REST charge API: your agent creates a payment intent and takes cards or PSE bank debit in one call.
Bold gives your agent 7 tools it calls directly โ pick the ones it needs, in Claude, Cursor, or any MCP client.
create_payment_link โ Create a Bold payment link (POST /online/link/v1). Returns payload.payment_link (LNK_ id) and payload.url to hand to the payer. Supports cards, PSE, Nequi and Botรณn Bancolombia; restrict with payment_methods.create_pse_payment_link โ Convenience wrapper: create a Bold payment link restricted to PSE bank debit (payment_methods=["PSE"]).create_card_payment_link โ Convenience wrapper: create a Bold payment link restricted to cards (payment_methods=["CREDIT_CARD"]).// Your agent calls a tool directly โ no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_payment_link", { /* ... */ });$ npm install @codespar/mcp-bold-coAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"bold-co": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-bold-co"
],
"env": {
"BOLD_API_KEY": "<your_bold_api_key>"
}
}
}
}After restart, your agent can call any of the 7 tools below โ try create_payment_link first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
BOLD_API_KEYBold identity API key (llave de identidad), sent as x-api-key
BOLD_SECRET_KEYBold secret key. Only needed for the local checkout-signature and webhook-validation tools.
Each tool is independent โ your agent loads only what it needs to reduce context and response time.
create_payment_linkcreate_pse_payment_linkcreate_card_payment_linkget_payment_linklist_payment_methodsgenerate_checkout_signaturevalidate_webhook_signatureMCP is a protocol โ any framework that speaks it can mount this server.