Global KYC leader (Entrust-owned). Applicants, document upload, live photos, checks (document + facial + watchlist + known-faces), reports. Pairs with Unico (BR-first) for global coverage when commerce touches non-LatAm users.
Onfido gives your agent 20 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
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-onfidoAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"onfido": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-onfido"
],
"env": {
"ONFIDO_API_TOKEN": "<your_onfido_api_token>"
}
}
}
}After restart, your agent can call any of the 20 tools below β try create_applicant first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
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.
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_applicantretrieve_applicantupdate_applicantupload_documentretrieve_documentupload_live_photoretrieve_live_photocreate_checkMCP is a protocol β any framework that speaks it can mount this server.