mcp server for VS Code
io.github.grabzit/mcp-server
Official GrabzIt MCP server for AI web scraping, screenshots, and PDF/DOCX generation.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "grabzit-app-key",
"description": "GRABZIT_APP_KEY",
"password": true
},
{
"type": "promptString",
"id": "grabzit-app-secret",
"description": "GRABZIT_APP_SECRET",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@grabzit/mcp-server"
],
"env": {
"GRABZIT_APP_KEY": "${input:grabzit-app-key}",
"GRABZIT_APP_SECRET": "${input:grabzit-app-secret}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs