Skip to content
VS Code

heu mcp for VS Code

io.github.lucav21/heu-mcp

HEU Legal e-signature MCP: manage HEU documents and PDFs, prompt signers, download PDFs.

client:VS Code transport:stdio runtime:pypi

Install heu mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "heu-api-key",
      "description": "HEU_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "heu-base-url",
      "description": "HEU_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "heu-download-dir",
      "description": "HEU_DOWNLOAD_DIR",
      "password": true
    }
  ],
  "servers": {
    "heu-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "heu-mcp"
      ],
      "env": {
        "HEU_API_KEY": "${input:heu-api-key}",
        "HEU_BASE_URL": "${input:heu-base-url}",
        "HEU_DOWNLOAD_DIR": "${input:heu-download-dir}"
      }
    }
  }
}

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

heu mcp in other clients