agentrender mcp for VS Code
io.github.corbinvachal48/agentrender-mcp
URL to screenshot, PDF, or structured extract for AI agents via MCP.
client:VS Code
transport:stdio
runtime:pypi
Install agentrender mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentrender-api-key",
"description": "AGENTRENDER_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "agentrender-base-url",
"description": "AGENTRENDER_BASE_URL",
"password": true
}
],
"servers": {
"agentrender-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"agentrender-mcp"
],
"env": {
"AGENTRENDER_API_KEY": "${input:agentrender-api-key}",
"AGENTRENDER_BASE_URL": "${input:agentrender-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs