Skip to content
VS Code

docapi for VS Code

io.github.doc-api-llc/docapi

Generate PDFs, screenshots, and documents via any MCP-compatible AI agent.

client:VS Code transport:stdio runtime:npm

Install docapi in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "docapi-api-key",
      "description": "DOCAPI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "docapi": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@docapi/mcp"
      ],
      "env": {
        "DOCAPI_API_KEY": "${input:docapi-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

docapi in other clients