OctoWatch DLP for VS Code
io.github.extralabs/octowatch-mcp
Read-only OctoWatch DLP Cloud MCP: risks, idle time, productivity, monitoring.
client:VS Code
transport:stdio
runtime:pypi
Install OctoWatch DLP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "octowatch-api-base",
"description": "OCTOWATCH_API_BASE",
"password": true
},
{
"type": "promptString",
"id": "octowatch-email",
"description": "OCTOWATCH_EMAIL",
"password": true
},
{
"type": "promptString",
"id": "octowatch-password",
"description": "OCTOWATCH_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "octowatch-toolsets",
"description": "OCTOWATCH_TOOLSETS",
"password": true
}
],
"servers": {
"octowatch-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"octowatch-mcp"
],
"env": {
"OCTOWATCH_API_BASE": "${input:octowatch-api-base}",
"OCTOWATCH_EMAIL": "${input:octowatch-email}",
"OCTOWATCH_PASSWORD": "${input:octowatch-password}",
"OCTOWATCH_TOOLSETS": "${input:octowatch-toolsets}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs