mcp wompi for VS Code
io.github.codespar/mcp-wompi
Wompi — Colombian payment gateway (by Bancolombia)
client:VS Code
transport:stdio
runtime:npm
Install mcp wompi in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wompi-public-key",
"description": "WOMPI_PUBLIC_KEY",
"password": true
},
{
"type": "promptString",
"id": "wompi-private-key",
"description": "WOMPI_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "wompi-events-secret",
"description": "WOMPI_EVENTS_SECRET",
"password": true
}
],
"servers": {
"mcp-wompi": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-wompi"
],
"env": {
"WOMPI_PUBLIC_KEY": "${input:wompi-public-key}",
"WOMPI_PRIVATE_KEY": "${input:wompi-private-key}",
"WOMPI_EVENTS_SECRET": "${input:wompi-events-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs