Tesorería y payouts B2B en Colombia y México. Movimiento de salida por rieles instantáneos (Bre-B) con gestión de saldo y beneficiarios.
Cobre le da a tu agente 8 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
list_balances — List the balances of every account visible to this credential (GET /v1/balances).get_balance — Get one balance by id (GET /v1/balances/{id}).create_counterparty — Register a counterparty (beneficiary) to pay out to (POST /v1/counterparties). Pass the counterparty object in Cobre's shape: geo, account details (bank code + account number for CO, CLABE for MX SPEI), and beneficiary identity.// 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("list_balances", { /* ... */ });$ npm install @codespar/mcp-cobreAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"cobre": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-cobre"
],
"env": {
"COBRE_USER_ID": "<your_cobre_user_id>",
"COBRE_SECRET": "<your_cobre_secret>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 8 herramientas de abajo — probá list_balances primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
COBRE_USER_IDCobre API credential user id
COBRE_SECRETCobre API credential secret
COBRE_BASE_URLOverride the API host. Defaults to https://api.cobre.co.
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
list_balancesget_balancecreate_counterpartylist_counterpartiesget_counterpartycreate_money_movementget_money_movementlist_money_movementsMCP es un protocolo — cualquier framework que lo hable puede montar este server.