mcp niubiz for VS Code
io.github.codespar/mcp-niubiz
MCP server for Niubiz — Peru card acquirer: security token, session, authorize, reverse
client:VS Code
transport:stdio
runtime:npm
Install mcp niubiz in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "niubiz-user",
"description": "NIUBIZ_USER",
"password": true
},
{
"type": "promptString",
"id": "niubiz-password",
"description": "NIUBIZ_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "niubiz-merchant-id",
"description": "NIUBIZ_MERCHANT_ID",
"password": true
},
{
"type": "promptString",
"id": "niubiz-env",
"description": "NIUBIZ_ENV",
"password": true
}
],
"servers": {
"mcp-niubiz": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-niubiz"
],
"env": {
"NIUBIZ_USER": "${input:niubiz-user}",
"NIUBIZ_PASSWORD": "${input:niubiz-password}",
"NIUBIZ_MERCHANT_ID": "${input:niubiz-merchant-id}",
"NIUBIZ_ENV": "${input:niubiz-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs