yocoolab for VS Code
io.github.jonahbkerr/yocoolab
Pin visual feedback on any live web page and send it to Claude Code, Cursor or your AI agent.
client:VS Code
transport:stdio
runtime:npm
Install yocoolab in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "yocoolab-token",
"description": "YOCOOLAB_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "yocoolab-api-url",
"description": "YOCOOLAB_API_URL",
"password": true
},
{
"type": "promptString",
"id": "github-token",
"description": "GITHUB_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "yocoolab-bridge-workspace",
"description": "YOCOOLAB_BRIDGE_WORKSPACE",
"password": true
}
],
"servers": {
"yocoolab": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@yocoolab/mcp-server"
],
"env": {
"YOCOOLAB_TOKEN": "${input:yocoolab-token}",
"YOCOOLAB_API_URL": "${input:yocoolab-api-url}",
"GITHUB_TOKEN": "${input:github-token}",
"YOCOOLAB_BRIDGE_WORKSPACE": "${input:yocoolab-bridge-workspace}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs