agentos for VS Code
io.github.imran-siddique/agentos
Build and manage policy-compliant AI agents with safety enforcement and compliance checking
client:VS Code
transport:stdio
runtime:npm
Install agentos in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentos-policy-mode",
"description": "AGENTOS_POLICY_MODE",
"password": true
},
{
"type": "promptString",
"id": "agentos-log-level",
"description": "AGENTOS_LOG_LEVEL",
"password": true
}
],
"servers": {
"agentos": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"agentos-mcp-server"
],
"env": {
"AGENTOS_POLICY_MODE": "${input:agentos-policy-mode}",
"AGENTOS_LOG_LEVEL": "${input:agentos-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs