eKYC Suite for VS Code
io.github.wefi-ai/ekyc-suite
KYC / eKYC MCP server for face compare, liveness, OCR, and image labeling.
client:VS Code
transport:stdio
runtime:npm
Install eKYC Suite in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kyc-appid",
"description": "KYC_APPID",
"password": true
},
{
"type": "promptString",
"id": "kyc-secret",
"description": "KYC_SECRET",
"password": true
},
{
"type": "promptString",
"id": "label-appid",
"description": "LABEL_APPID",
"password": true
},
{
"type": "promptString",
"id": "label-secret",
"description": "LABEL_SECRET",
"password": true
}
],
"servers": {
"ekyc-suite": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@wefi-ai/ekyc-suite-mcp"
],
"env": {
"KYC_APPID": "${input:kyc-appid}",
"KYC_SECRET": "${input:kyc-secret}",
"LABEL_APPID": "${input:label-appid}",
"LABEL_SECRET": "${input:label-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs