mcp jumio for VS Code
io.github.codespar/mcp-jumio
MCP server for Jumio — global identity verification + KYX: documents, liveness, AML screening
client:VS Code
transport:stdio
runtime:npm
Install mcp jumio in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "jumio-api-token",
"description": "JUMIO_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "jumio-api-secret",
"description": "JUMIO_API_SECRET",
"password": true
},
{
"type": "promptString",
"id": "jumio-user-agent",
"description": "JUMIO_USER_AGENT",
"password": true
},
{
"type": "promptString",
"id": "jumio-region",
"description": "JUMIO_REGION",
"password": true
}
],
"servers": {
"mcp-jumio": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-jumio"
],
"env": {
"JUMIO_API_TOKEN": "${input:jumio-api-token}",
"JUMIO_API_SECRET": "${input:jumio-api-secret}",
"JUMIO_USER_AGENT": "${input:jumio-user-agent}",
"JUMIO_REGION": "${input:jumio-region}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs