bulkrender for VS Code
io.github.ayo-nci/bulkrender
Generate DOCX and PDF documents from AI assistants using BulkRender templates.
client:VS Code
transport:stdio
runtime:npm
Install bulkrender in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bulkrender-api-url",
"description": "BULKRENDER_API_URL",
"password": true
}
],
"servers": {
"bulkrender": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"bulkrender-mcp"
],
"env": {
"BULKRENDER_API_URL": "${input:bulkrender-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs