Skip to content
VS Code

PodPDF for VS Code

io.github.mohzameer/podpdf

Turn HTML, Markdown, URLs and saved templates into PDFs with the PodPDF API.

client:VS Code transport:stdio runtime:npm

Install PodPDF in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "podpdf-api-key",
      "description": "PODPDF_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "podpdf": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "podpdf-mcp"
      ],
      "env": {
        "PODPDF_API_KEY": "${input:podpdf-api-key}"
      }
    }
  }
}

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

PodPDF in other clients