mcp caf for VS Code
io.github.codespar/mcp-caf
MCP server for Caf — Brazilian KYC/KYB: face auth + liveness, document OCR, orchestrated onboarding
client:VS Code
transport:stdio
runtime:npm
Install mcp caf in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "caf-api-key",
"description": "CAF_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "caf-api-base",
"description": "CAF_API_BASE",
"password": true
}
],
"servers": {
"mcp-caf": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-caf"
],
"env": {
"CAF_API_KEY": "${input:caf-api-key}",
"CAF_API_BASE": "${input:caf-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs