mcp for VS Code
io.sifting/mcp
Live crypto/forex/metals prices, OHLCV bars, SEC fundamentals, 13F holdings and econ calendar.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sifting-api-key",
"description": "SIFTING_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "sifting-base-url",
"description": "SIFTING_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "sifting-ws-url",
"description": "SIFTING_WS_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"siftingio-mcp"
],
"env": {
"SIFTING_API_KEY": "${input:sifting-api-key}",
"SIFTING_BASE_URL": "${input:sifting-base-url}",
"SIFTING_WS_URL": "${input:sifting-ws-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs