Skip to content
VS Code

pdf letter mcp for VS Code

io.github.bitterdev/pdf-letter-mcp

Renders letters as print ready PDFs, DIN 5008 compliant for German window envelopes.

client:VS Code transport:stdio runtime:npm

Install pdf letter mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pdf-letter-output-dir",
      "description": "PDF_LETTER_OUTPUT_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pdf-letter-font-dir",
      "description": "PDF_LETTER_FONT_DIR",
      "password": true
    }
  ],
  "servers": {
    "pdf-letter-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "pdf-letter-mcp"
      ],
      "env": {
        "PDF_LETTER_OUTPUT_DIR": "${input:pdf-letter-output-dir}",
        "PDF_LETTER_FONT_DIR": "${input:pdf-letter-font-dir}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

pdf letter mcp in other clients