Líder global en KYC (de Entrust). Applicants, upload de documento, fotos en vivo, checks (documento + facial + watchlist + known-faces), reportes. Combina con Unico (BR-first) para cobertura global cuando el comercio toca usuarios fuera de LatAm.
Onfido le da a tu agente 20 tools que llama directo — elegí las que necesite, en Claude, Cursor o cualquier cliente MCP.
create_applicant — Create an Onfido applicant — the person record that documents, live photos, and checks attach to. Required before any verification.retrieve_applicant — Retrieve an applicant by id.update_applicant — Update fields on an existing applicant. Send only the fields you want to change.// 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_applicant", { /* ... */ });$ npm install @codespar/mcp-onfidoAgregá esta entrada a tu claude_desktop_config.json (o a la config de cualquier cliente compatible con MCP).
{
"mcpServers": {
"onfido": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-onfido"
],
"env": {
"ONFIDO_API_TOKEN": "<your_onfido_api_token>"
}
}
}
}Después de reiniciar, tu agente puede llamar cualquiera de las 20 herramientas de abajo — probá create_applicant primero.
Necesarias para autenticar el server. Almacenadas cifradas al usar el hosting gestionado de CodeSpar.
ONFIDO_API_TOKENOnfido API token. Sent as 'Authorization: Token token=<value>'.
ONFIDO_REGIONRegion for the API host: 'eu' (api.eu.onfido.com), 'us' (api.us.onfido.com), 'ca' (api.ca.onfido.com). Defaults to api.onfido.com when unset.
Cada herramienta es independiente — tu agente carga solo lo que necesita para reducir contexto y tiempo de respuesta.
create_applicantretrieve_applicantupdate_applicantupload_documentretrieve_documentupload_live_photoretrieve_live_photocreate_checkMCP es un protocolo — cualquier framework que lo hable puede montar este server.