Tesouraria e payouts B2B na Colômbia e no México. Movimentação de saída por trilhos instantâneos (Bre-B) com gestão de saldo e beneficiários.
O Cobre dá ao seu agente 8 tools que ele chama direto — escolha as que precisar, no Claude, Cursor ou qualquer 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-cobreAdicione esta entrada ao seu claude_desktop_config.json (ou a config de qualquer cliente compatível com MCP).
{
"mcpServers": {
"cobre": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-cobre"
],
"env": {
"COBRE_USER_ID": "<your_cobre_user_id>",
"COBRE_SECRET": "<your_cobre_secret>"
}
}
}
}Depois de reiniciar, seu agente pode chamar qualquer uma das 8 ferramentas abaixo — teste list_balances primeiro.
Necessárias pra autenticar o server. Armazenadas criptografadas ao usar a hospedagem gerenciada da 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 ferramenta é independente — seu agente carrega só o que precisa pra reduzir contexto e tempo de resposta.
list_balancesget_balancecreate_counterpartylist_counterpartiesget_counterpartycreate_money_movementget_money_movementlist_money_movementsMCP é um protocolo — qualquer framework que o fale pode montar este server.