nightglass for VS Code
io.github.mizukaizen/nightglass
Screenshot API for MCP clients. Capture any URL as PNG with mockup mode support.
client:VS Code
transport:stdio
runtime:npm
Install nightglass in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "nightglass-api-key",
"description": "NIGHTGLASS_API_KEY",
"password": true
}
],
"servers": {
"nightglass": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"nightglass-mcp"
],
"env": {
"NIGHTGLASS_API_KEY": "${input:nightglass-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