Inforcer for VS Code
io.github.wyre-ai/inforcer-mcp
Read-only MCP server for Inforcer M365 baseline governance, plus assessment and report runs.
client:VS Code
transport:stdio
runtime:oci
Install Inforcer in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "inforcer-region",
"description": "INFORCER_REGION",
"password": true
},
{
"type": "promptString",
"id": "inforcer-api-key",
"description": "INFORCER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "mcp-transport",
"description": "MCP_TRANSPORT",
"password": true
},
{
"type": "promptString",
"id": "auth-mode",
"description": "AUTH_MODE",
"password": true
},
{
"type": "promptString",
"id": "log-level",
"description": "LOG_LEVEL",
"password": true
}
],
"servers": {
"inforcer-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-ai/inforcer-mcp:v1.1.2"
],
"env": {
"INFORCER_REGION": "${input:inforcer-region}",
"INFORCER_API_KEY": "${input:inforcer-api-key}",
"MCP_TRANSPORT": "${input:mcp-transport}",
"AUTH_MODE": "${input:auth-mode}",
"LOG_LEVEL": "${input: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