mcp stp spei for VS Code
io.github.codespar/mcp-stp-spei
STP/SPEI — Mexican instant bank transfers
client:VS Code
transport:stdio
runtime:npm
Install mcp stp spei in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "stp-api-key",
"description": "STP_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "stp-company",
"description": "STP_COMPANY",
"password": true
}
],
"servers": {
"mcp-stp-spei": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-stp-spei"
],
"env": {
"STP_API_KEY": "${input:stp-api-key}",
"STP_COMPANY": "${input:stp-company}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs