zen for VS Code
io.github.krystiangw/zen
Unofficial MCP server for the ZEN.com Payment Gateway: payment links, transactions, refunds.
client:VS Code
transport:stdio
runtime:npm
Install zen in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "zen-api-key",
"description": "ZEN_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "zen-paywall-secret",
"description": "ZEN_PAYWALL_SECRET",
"password": true
},
{
"type": "promptString",
"id": "zen-ipn-secret",
"description": "ZEN_IPN_SECRET",
"password": true
},
{
"type": "promptString",
"id": "zen-env",
"description": "ZEN_ENV",
"password": true
}
],
"servers": {
"zen": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@krystiangw/zen-mcp"
],
"env": {
"ZEN_API_KEY": "${input:zen-api-key}",
"ZEN_PAYWALL_SECRET": "${input:zen-paywall-secret}",
"ZEN_IPN_SECRET": "${input:zen-ipn-secret}",
"ZEN_ENV": "${input:zen-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs