Skip to content
VS Code

EU Audit Trail for VS Code

io.github.jellewas/eu-audit-mcp

Tamper-evident audit trail MCP server for EU AI Act & GDPR compliance.

client:VS Code transport:stdio runtime:pypi

Install EU Audit Trail in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "audit-config",
      "description": "AUDIT_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "eu-audit-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "eu-audit-mcp"
      ],
      "env": {
        "AUDIT_CONFIG": "${input:audit-config}"
      }
    }
  }
}

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

EU Audit Trail in other clients