Skip to content
VS Code

data aggregator mcp for VS Code

io.github.vpatser1/data-aggregator-mcp

Unified data server: stocks, crypto, news, weather, web scraping, FX rates in one MCP

client:VS Code transport:stdio runtime:npm

Install data aggregator mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "license-key",
      "description": "LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "data-aggregator-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "data-aggregator-mcp"
      ],
      "env": {
        "LICENSE_KEY": "${input:license-key}"
      }
    }
  }
}

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

data aggregator mcp in other clients