Skip to content
VS Code

PDFCrowd PDF Export for VS Code

io.github.pdfcrowd/pdfcrowd-mcp-pdf-export

Create polished, professional PDFs from a single prompt. Documentation, reports, charts, and more.

client:VS Code transport:stdio runtime:npm

Install PDFCrowd PDF Export in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pdfcrowd-username",
      "description": "PDFCROWD_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "pdfcrowd-api-key",
      "description": "PDFCROWD_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "pdfcrowd-mcp-pdf-export": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "pdfcrowd-mcp-pdf-export"
      ],
      "env": {
        "PDFCROWD_USERNAME": "${input:pdfcrowd-username}",
        "PDFCROWD_API_KEY": "${input:pdfcrowd-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

PDFCrowd PDF Export in other clients