tork governance for VS Code
io.github.torkjacobs/tork-governance
AI agent governance for MCP: PII detection, policy enforcement, compliance, and kill switch.
client:VS Code
transport:stdio
runtime:npm
Install tork governance in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "tork-api-key",
"description": "TORK_API_KEY",
"password": true
}
],
"servers": {
"tork-governance": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@torknetwork/mcp-server"
],
"env": {
"TORK_API_KEY": "${input:tork-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