mcp kushki for VS Code
io.github.codespar/mcp-kushki
MCP server for Kushki — LATAM PSP: card charges, preauth, PSE/SPEI transfer, cash, subscriptions
client:VS Code
transport:stdio
runtime:npm
Install mcp kushki in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "kushki-public-merchant-id",
"description": "KUSHKI_PUBLIC_MERCHANT_ID",
"password": true
},
{
"type": "promptString",
"id": "kushki-private-merchant-id",
"description": "KUSHKI_PRIVATE_MERCHANT_ID",
"password": true
},
{
"type": "promptString",
"id": "kushki-env",
"description": "KUSHKI_ENV",
"password": true
}
],
"servers": {
"mcp-kushki": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-kushki"
],
"env": {
"KUSHKI_PUBLIC_MERCHANT_ID": "${input:kushki-public-merchant-id}",
"KUSHKI_PRIVATE_MERCHANT_ID": "${input:kushki-private-merchant-id}",
"KUSHKI_ENV": "${input:kushki-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs