Entroly for VS Code
io.github.juyterman1000/entroly
Context Assurance for AI agents: context engineering, AI cost optimization, verification.
client:VS Code
transport:stdio
runtime:pypi
Install Entroly in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "entroly-mcp-profile",
"description": "ENTROLY_MCP_PROFILE",
"password": true
},
{
"type": "promptString",
"id": "entroly-mcp-passive",
"description": "ENTROLY_MCP_PASSIVE",
"password": true
},
{
"type": "promptString",
"id": "entroly-no-docker",
"description": "ENTROLY_NO_DOCKER",
"password": true
}
],
"servers": {
"entroly": {
"type": "stdio",
"command": "uvx",
"args": [
"entroly"
],
"env": {
"ENTROLY_MCP_PROFILE": "${input:entroly-mcp-profile}",
"ENTROLY_MCP_PASSIVE": "${input:entroly-mcp-passive}",
"ENTROLY_NO_DOCKER": "${input:entroly-no-docker}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs