mcp for VS Code
so.blackforge/mcp
Crypto market data: order book depth, liquidity lifetimes and taker flow on 9 spot venues
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "blackforge-api-key",
"description": "BLACKFORGE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "blackforge-base-url",
"description": "BLACKFORGE_BASE_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@blackforge-so/mcp"
],
"env": {
"BLACKFORGE_API_KEY": "${input:blackforge-api-key}",
"BLACKFORGE_BASE_URL": "${input:blackforge-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