regulatory-deadline for VS Code
io.github.weiseer/regulatory-deadline
FinCEN/SEC/EU AI Act/GDPR deadline tracker for AI agents.
client:VS Code
transport:stdio
runtime:npm
Install regulatory-deadline in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "reg-url",
"description": "REG_URL",
"password": true
},
{
"type": "promptString",
"id": "reg-local-only",
"description": "REG_LOCAL_ONLY",
"password": true
}
],
"servers": {
"regulatory-deadline": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@weiseer/regulatory-deadline-mcp"
],
"env": {
"REG_URL": "${input:reg-url}",
"REG_LOCAL_ONLY": "${input:reg-local-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs