yad agent mcp for VS Code
io.github.holistis/yad-agent-mcp
MCP wrapper for Yad, a local browser-automation companion, for coding agents.
client:VS Code
transport:stdio
runtime:npm
Install yad agent mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "yad-companion-url",
"description": "YAD_COMPANION_URL",
"password": true
}
],
"servers": {
"yad-agent-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"yad-agent-mcp"
],
"env": {
"YAD_COMPANION_URL": "${input:yad-companion-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs