Skip to content
VS Code

groupdocs total mcp for VS Code

io.github.groupdocs-total/groupdocs-total-mcp

MCP server for GroupDocs.Total — annotate, sign, convert, watermark, parse, redact documents via AI.

client:VS Code transport:stdio runtime:oci

Install groupdocs total mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "groupdocs-mcp-storage-path",
      "description": "GROUPDOCS_MCP_STORAGE_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "groupdocs-mcp-output-path",
      "description": "GROUPDOCS_MCP_OUTPUT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "groupdocs-license-path",
      "description": "GROUPDOCS_LICENSE_PATH",
      "password": true
    }
  ],
  "servers": {
    "groupdocs-total-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/groupdocs-total/total-net-mcp:26.7.3"
      ],
      "env": {
        "GROUPDOCS_MCP_STORAGE_PATH": "${input:groupdocs-mcp-storage-path}",
        "GROUPDOCS_MCP_OUTPUT_PATH": "${input:groupdocs-mcp-output-path}",
        "GROUPDOCS_LICENSE_PATH": "${input:groupdocs-license-path}"
      }
    }
  }
}

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

groupdocs total mcp in other clients