mcp onfido for VS Code
io.github.codespar/mcp-onfido
MCP server for Onfido — global identity verification + KYC: applicants, documents, checks, workflows
client:VS Code
transport:stdio
runtime:npm
Install mcp onfido in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "onfido-api-token",
"description": "ONFIDO_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "onfido-region",
"description": "ONFIDO_REGION",
"password": true
}
],
"servers": {
"mcp-onfido": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-onfido"
],
"env": {
"ONFIDO_API_TOKEN": "${input:onfido-api-token}",
"ONFIDO_REGION": "${input:onfido-region}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs