ultra-e2e-test tasks for VS Code
io.github.hynix666/ultra-e2e-test
List, create and move tasks through todo, in progress and done.
client:VS Code
transport:stdio
runtime:oci
Install ultra-e2e-test tasks in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "task-api-url",
"description": "TASK_API_URL",
"password": true
},
{
"type": "promptString",
"id": "task-api-timeout-ms",
"description": "TASK_API_TIMEOUT_MS",
"password": true
}
],
"servers": {
"ultra-e2e-test": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/hynix666/ultra-e2e-test-mcp-server:0.1.1"
],
"env": {
"TASK_API_URL": "${input:task-api-url}",
"TASK_API_TIMEOUT_MS": "${input:task-api-timeout-ms}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs