Skip to content
VS Code

finance mcp server for VS Code

io.github.thenextgennexus/finance-mcp-server

Get stock data, screen stocks, track crypto prices, and monitor exchange rates

client:VS Code transport:stdio runtime:npm

Install finance mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apify-token",
      "description": "APIFY_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "finance-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@thenextgennexus/finance-mcp-server"
      ],
      "env": {
        "APIFY_TOKEN": "${input:apify-token}"
      }
    }
  }
}

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

finance mcp server in other clients