AllRatesToday for VS Code
io.github.cahthuranag/mcp-server
Real-time & historical exchange rates for 160+ currencies. No API key needed to start.
client:VS Code
transport:stdio
runtime:npm
Install AllRatesToday in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "allrates-api-key",
"description": "ALLRATES_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "allrates-base-url",
"description": "ALLRATES_BASE_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@allratestoday/mcp-server"
],
"env": {
"ALLRATES_API_KEY": "${input:allrates-api-key}",
"ALLRATES_BASE_URL": "${input:allrates-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs