mcp transak for VS Code
io.github.codespar/mcp-transak
MCP server for Transak — fiat-to-crypto on/off-ramp across ~170 countries (Partner API)
client:VS Code
transport:stdio
runtime:npm
Install mcp transak in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "transak-api-key",
"description": "TRANSAK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "transak-api-secret",
"description": "TRANSAK_API_SECRET",
"password": true
},
{
"type": "promptString",
"id": "transak-env",
"description": "TRANSAK_ENV",
"password": true
}
],
"servers": {
"mcp-transak": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@codespar/mcp-transak"
],
"env": {
"TRANSAK_API_KEY": "${input:transak-api-key}",
"TRANSAK_API_SECRET": "${input:transak-api-secret}",
"TRANSAK_ENV": "${input:transak-env}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs