mcp server for VS Code
io.docmill/mcp-server
Generate PDF, DOCX, and XLSX documents from JSON data and create reusable templates via Docmill
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "docmill-api-key",
"description": "DOCMILL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "docmill-base-url",
"description": "DOCMILL_BASE_URL",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@docmill/mcp-server"
],
"env": {
"DOCMILL_API_KEY": "${input:docmill-api-key}",
"DOCMILL_BASE_URL": "${input:docmill-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