Skip to content
VS Code

Veridion nexus for VS Code

io.github.brano80/veridion-nexus

Veridion Nexus MCP server - GDPR Art. 44-49 runtime compliance for AI agents

client:VS Code transport:stdio runtime:npm

Install Veridion nexus in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "veridion-nexus-api-key",
      "description": "VERIDION_NEXUS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "veridion-nexus": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "veridion-nexus-mcp"
      ],
      "env": {
        "VERIDION_NEXUS_API_KEY": "${input:veridion-nexus-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

Veridion nexus in other clients