Skip to content
VS Code

NVEIL for VS Code

io.github.nveil-ai/nveil

Data processing and visualization toolkit — 50+ chart types, raw data stays local.

client:VS Code transport:stdio runtime:pypi

Install NVEIL in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "nveil-api-key",
      "description": "NVEIL_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "nveil": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "nveil"
      ],
      "env": {
        "NVEIL_API_KEY": "${input:nveil-api-key}"
      }
    }
  }
}

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

NVEIL in other clients