Zeus Dev Helper for VS Code
io.github.koten-ai/zeus-dev-helper
Coach first Zeus Client app to green (stdio MCP).
client:VS Code
transport:stdio
runtime:pypi
Install Zeus Dev Helper in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "zeus-url",
"description": "ZEUS_URL",
"password": true
},
{
"type": "promptString",
"id": "zeus-bucket",
"description": "ZEUS_BUCKET",
"password": true
},
{
"type": "promptString",
"id": "zeus-scope",
"description": "ZEUS_SCOPE",
"password": true
},
{
"type": "promptString",
"id": "zeus-username",
"description": "ZEUS_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "zeus-password",
"description": "ZEUS_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "zeus-bearer-token",
"description": "ZEUS_BEARER_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "zeus-chat-request-dir",
"description": "ZEUS_CHAT_REQUEST_DIR",
"password": true
},
{
"type": "promptString",
"id": "github-token",
"description": "GITHUB_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "demo-travel-sample-dir",
"description": "DEMO_TRAVEL_SAMPLE_DIR",
"password": true
},
{
"type": "promptString",
"id": "zeus-dev-helper-toolsets",
"description": "ZEUS_DEV_HELPER_TOOLSETS",
"password": true
}
],
"servers": {
"zeus-dev-helper": {
"type": "stdio",
"command": "uvx",
"args": [
"zeus-dev-helper-mcp"
],
"env": {
"ZEUS_URL": "${input:zeus-url}",
"ZEUS_BUCKET": "${input:zeus-bucket}",
"ZEUS_SCOPE": "${input:zeus-scope}",
"ZEUS_USERNAME": "${input:zeus-username}",
"ZEUS_PASSWORD": "${input:zeus-password}",
"ZEUS_BEARER_TOKEN": "${input:zeus-bearer-token}",
"ZEUS_CHAT_REQUEST_DIR": "${input:zeus-chat-request-dir}",
"GITHUB_TOKEN": "${input:github-token}",
"DEMO_TRAVEL_SAMPLE_DIR": "${input:demo-travel-sample-dir}",
"ZEUS_DEV_HELPER_TOOLSETS": "${input:zeus-dev-helper-toolsets}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs