Skip to content
VS Code

stylobridge for VS Code

io.github.blockpal1/stylobridge

Air-gapped Markdown/PDF to Word converter with brand templates and audit logging.

client:VS Code transport:stdio runtime:pypi

Install stylobridge in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stylobridge-license",
      "description": "STYLOBRIDGE_LICENSE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "template-dir",
      "description": "TEMPLATE_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "workspace-root",
      "description": "WORKSPACE_ROOT",
      "password": true
    }
  ],
  "servers": {
    "stylobridge": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "stylobridge"
      ],
      "env": {
        "STYLOBRIDGE_LICENSE": "${input:stylobridge-license}",
        "TEMPLATE_DIR": "${input:template-dir}",
        "WORKSPACE_ROOT": "${input:workspace-root}"
      }
    }
  }
}

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

stylobridge in other clients