Enoch for VS Code
io.github.alias8818/enoch
Operate an Enoch control plane through MCP tools
client:VS Code
transport:stdio
runtime:pypi
Install Enoch in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "enoch-api-url",
"description": "ENOCH_API_URL",
"password": true
},
{
"type": "promptString",
"id": "enoch-api-token",
"description": "ENOCH_API_TOKEN",
"password": true
}
],
"servers": {
"enoch": {
"type": "stdio",
"command": "uvx",
"args": [
"enoch-mcp"
],
"env": {
"ENOCH_API_URL": "${input:enoch-api-url}",
"ENOCH_API_TOKEN": "${input:enoch-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs