NIRA Screen Vision MCP for VS Code
io.github.pachote/nira-screen-vision
Real-time screen capture + AI vision for Claude — see, analyze, and OCR your screen
client:VS Code
transport:stdio
runtime:pypi
Install NIRA Screen Vision MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
}
],
"servers": {
"nira-screen-vision": {
"type": "stdio",
"command": "uvx",
"args": [
"nira-screen-vision"
],
"env": {
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs