Skip to content
VS Code

ScalpStream for VS Code

io.github.dv1-321/scalpstream-mcp

Pay-per-call data over x402: air quality, border waits, fuel prices, market research.

client:VS Code transport:stdio runtime:oci

Install ScalpStream in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "evm-base-private-key",
      "description": "EVM_BASE_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "scalpmcp-max-price-usd",
      "description": "SCALPMCP_MAX_PRICE_USD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "scalpmcp-budget-usd",
      "description": "SCALPMCP_BUDGET_USD",
      "password": true
    }
  ],
  "servers": {
    "scalpstream-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/dv1-321/scalpstream-mcp:v0.1.6"
      ],
      "env": {
        "EVM_BASE_PRIVATE_KEY": "${input:evm-base-private-key}",
        "SCALPMCP_MAX_PRICE_USD": "${input:scalpmcp-max-price-usd}",
        "SCALPMCP_BUDGET_USD": "${input:scalpmcp-budget-usd}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

ScalpStream in other clients