mcp unico for VS Code
io.github.codespar/mcp-unico
MCP server for Unico — Brazilian identity + KYC: CPF/CNPJ, OCR, face match, liveness, PEP/watchlists
client:VS Code
transport:stdio
runtime:npm
Install mcp unico in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "unico-client-id",
"description": "UNICO_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "unico-client-secret",
"description": "UNICO_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "unico-env",
"description": "UNICO_ENV",
"password": true
},
{
"type": "promptString",
"id": "unico-base-url",
"description": "UNICO_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "unico-auth-url",
"description": "UNICO_AUTH_URL",
"password": true
}
],
"servers": {
"mcp-unico": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-unico"
],
"env": {
"UNICO_CLIENT_ID": "${input:unico-client-id}",
"UNICO_CLIENT_SECRET": "${input:unico-client-secret}",
"UNICO_ENV": "${input:unico-env}",
"UNICO_BASE_URL": "${input:unico-base-url}",
"UNICO_AUTH_URL": "${input:unico-auth-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs