Skip to content
VS Code

bridgistic for VS Code

io.github.shubochandrosarker/bridgistic

Connect Claude to WordPress safely: signed requests, scoped keys, approvals, logs, snapshots.

client:VS Code transport:stdio runtime:npm

Install bridgistic in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bridgistic-site-url",
      "description": "BRIDGISTIC_SITE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bridgistic-key-id",
      "description": "BRIDGISTIC_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bridgistic-key-secret",
      "description": "BRIDGISTIC_KEY_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bridgistic-connections",
      "description": "BRIDGISTIC_CONNECTIONS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "bridgistic-log-level",
      "description": "BRIDGISTIC_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "bridgistic": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "bridgistic-mcp-server"
      ],
      "env": {
        "BRIDGISTIC_SITE_URL": "${input:bridgistic-site-url}",
        "BRIDGISTIC_KEY_ID": "${input:bridgistic-key-id}",
        "BRIDGISTIC_KEY_SECRET": "${input:bridgistic-key-secret}",
        "BRIDGISTIC_CONNECTIONS": "${input:bridgistic-connections}",
        "BRIDGISTIC_LOG_LEVEL": "${input:bridgistic-log-level}"
      }
    }
  }
}

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

bridgistic in other clients