Skip to content
VS Code

docjet mcp for VS Code

io.github.docjet-dev/docjet-mcp

Render branded PDFs and PNG images from templates or raw HTML via the DocJet API. Free tier.

client:VS Code transport:stdio runtime:npm

Install docjet mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "docjet-api-key",
      "description": "DOCJET_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "docjet-base-url",
      "description": "DOCJET_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "docjet-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "docjet-mcp"
      ],
      "env": {
        "DOCJET_API_KEY": "${input:docjet-api-key}",
        "DOCJET_BASE_URL": "${input:docjet-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

docjet mcp in other clients