screenshotrender mcp for VS Code
io.github.faridmth/screenshotrender-mcp
Capture website screenshots from any MCP client via the ScreenshotRender API.
client:VS Code
transport:stdio
runtime:npm
Install screenshotrender mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "screenshotrender-api-key",
"description": "SCREENSHOTRENDER_API_KEY",
"password": true
}
],
"servers": {
"screenshotrender-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"screenshotrender-mcp"
],
"env": {
"SCREENSHOTRENDER_API_KEY": "${input:screenshotrender-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