SentinelOne (Purple) for VS Code
io.github.wyre-technology/sentinelone-mcp
Multitenant Streamable HTTP wrapper for the SentinelOne purple-mcp server.
client:VS Code
transport:stdio
runtime:oci
Install SentinelOne (Purple) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "port",
"description": "PORT",
"password": true
},
{
"type": "promptString",
"id": "idle-evict-ms",
"description": "IDLE_EVICT_MS",
"password": true
},
{
"type": "promptString",
"id": "spawn-ready-timeout-ms",
"description": "SPAWN_READY_TIMEOUT_MS",
"password": true
},
{
"type": "promptString",
"id": "log-level",
"description": "LOG_LEVEL",
"password": true
}
],
"servers": {
"sentinelone-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/wyre-technology/sentinelone-mcp:v1.0.6"
],
"env": {
"PORT": "${input:port}",
"IDLE_EVICT_MS": "${input:idle-evict-ms}",
"SPAWN_READY_TIMEOUT_MS": "${input:spawn-ready-timeout-ms}",
"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