Web Task for VS Code
io.github.jojo-labs/web-task-api
Browser tasks, sessions, and recipes for MCP and HTTP automation.
client:VS Code
transport:stdio
runtime:npm
Install Web Task in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "web-task-api-data-dir",
"description": "WEB_TASK_API_DATA_DIR",
"password": true
},
{
"type": "promptString",
"id": "web-task-api-recipes-dir",
"description": "WEB_TASK_API_RECIPES_DIR",
"password": true
},
{
"type": "promptString",
"id": "web-task-api-temp-dir",
"description": "WEB_TASK_API_TEMP_DIR",
"password": true
},
{
"type": "promptString",
"id": "web-task-api-model",
"description": "WEB_TASK_API_MODEL",
"password": true
},
{
"type": "promptString",
"id": "web-task-api-variant",
"description": "WEB_TASK_API_VARIANT",
"password": true
},
{
"type": "promptString",
"id": "web-task-api-pi-url",
"description": "WEB_TASK_API_PI_URL",
"password": true
},
{
"type": "promptString",
"id": "web-task-api-pi-model",
"description": "WEB_TASK_API_PI_MODEL",
"password": true
},
{
"type": "promptString",
"id": "web-task-api-pi-variant",
"description": "WEB_TASK_API_PI_VARIANT",
"password": true
},
{
"type": "promptString",
"id": "cliproxy-base-url",
"description": "CLIPROXY_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "cliproxy-auth-token",
"description": "CLIPROXY_AUTH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "cliproxy-model",
"description": "CLIPROXY_MODEL",
"password": true
},
{
"type": "promptString",
"id": "opencode-base-url",
"description": "OPENCODE_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "opencode-model",
"description": "OPENCODE_MODEL",
"password": true
},
{
"type": "promptString",
"id": "browser-user-data-dir",
"description": "BROWSER_USER_DATA_DIR",
"password": true
},
{
"type": "promptString",
"id": "browser-channel",
"description": "BROWSER_CHANNEL",
"password": true
},
{
"type": "promptString",
"id": "headless",
"description": "HEADLESS",
"password": true
}
],
"servers": {
"web-task-api": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"web-task-api"
],
"env": {
"WEB_TASK_API_DATA_DIR": "${input:web-task-api-data-dir}",
"WEB_TASK_API_RECIPES_DIR": "${input:web-task-api-recipes-dir}",
"WEB_TASK_API_TEMP_DIR": "${input:web-task-api-temp-dir}",
"WEB_TASK_API_MODEL": "${input:web-task-api-model}",
"WEB_TASK_API_VARIANT": "${input:web-task-api-variant}",
"WEB_TASK_API_PI_URL": "${input:web-task-api-pi-url}",
"WEB_TASK_API_PI_MODEL": "${input:web-task-api-pi-model}",
"WEB_TASK_API_PI_VARIANT": "${input:web-task-api-pi-variant}",
"CLIPROXY_BASE_URL": "${input:cliproxy-base-url}",
"CLIPROXY_AUTH_TOKEN": "${input:cliproxy-auth-token}",
"CLIPROXY_MODEL": "${input:cliproxy-model}",
"OPENCODE_BASE_URL": "${input:opencode-base-url}",
"OPENCODE_MODEL": "${input:opencode-model}",
"BROWSER_USER_DATA_DIR": "${input:browser-user-data-dir}",
"BROWSER_CHANNEL": "${input:browser-channel}",
"HEADLESS": "${input:headless}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs