uisight for VS Code
io.github.yusufcemres/uisight
Your AI sees the screen but can't measure it — measured web UI findings, shared live sessions
client:VS Code
transport:stdio
runtime:npm
Install uisight in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "uisight-url",
"description": "UISIGHT_URL",
"password": true
},
{
"type": "promptString",
"id": "uisight-port",
"description": "UISIGHT_PORT",
"password": true
},
{
"type": "promptString",
"id": "uisight-lang",
"description": "UISIGHT_LANG",
"password": true
}
],
"servers": {
"uisight": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"uisight"
],
"env": {
"UISIGHT_URL": "${input:uisight-url}",
"UISIGHT_PORT": "${input:uisight-port}",
"UISIGHT_LANG": "${input:uisight-lang}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs