Tier enterprise de KYC global — inteligencia de fraude más profunda, historia de operación más larga. Objetivo: bancos, grandes fintechs, comercio regulado. Hosts regionales (amer-1 / emea-1 / apac-1). Verificado contra docs.jumio.ai.
Jumio le da a tu agente 20 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
initiate_account — Create a persistent Jumio end-user account. An account groups all workflow executions (KYC transactions) for the same real-world user, enabling re-use of previously verified data and longitudinal fraud signals.initiate_transaction — Start a new KYC workflow execution on an existing account. Returns a `redirectUrl` — redirect the end user there to complete the Jumio-hosted capture flow (document + selfie). Poll get_transaction for status afterwards.get_transaction — Retrieve a workflow execution summary — status ('INITIATED' | 'PROCESSED' | 'SESSION_EXPIRED' | 'TOKEN_EXPIRED' | 'ACQUIRED'), decision outcome, and capability-level results. Poll this to track progress.// 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("initiate_account", { /* ... */ });$ npm install @codespar/mcp-jumioAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"jumio": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-jumio"
],
"env": {
"JUMIO_API_TOKEN": "<your_jumio_api_token>",
"JUMIO_API_SECRET": "<your_jumio_api_secret>",
"JUMIO_USER_AGENT": "<your_jumio_user_agent>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 20 herramientas de abajo — probá initiate_account primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
JUMIO_API_TOKENJumio API token (sent as the username component of HTTP Basic auth).
JUMIO_API_SECRETJumio API secret (sent as the password component of HTTP Basic auth).
JUMIO_USER_AGENTMerchant User-Agent string. Jumio requires a custom User-Agent header identifying the calling application (e.g. 'AcmeCorp KYX/1.0').
JUMIO_REGIONRegion for the API host: 'us' (api.amer-1.jumio.ai), 'eu' (api.emea-1.jumio.ai), 'sg' (api.apac-1.jumio.ai). Defaults to 'us'.
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
initiate_accountinitiate_transactionget_transactionlist_transactionsget_transaction_detailsretrieve_document_dataretrieve_similarity_scoredelete_transactionMCP es un protocolo — cualquier framework que lo hable puede montar este server.