Skip to content
VS Code

Mizuki for VS Code

org.opencovenant/mizuki

Fixed-price maintenance for public GitHub issues, paid in USDC on Solana.

client:VS Code transport:stdio runtime:npm

Install Mizuki in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mizuki-api-url",
      "description": "MIZUKI_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mizuki-api-token",
      "description": "MIZUKI_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mizuki-mcp-timeout-ms",
      "description": "MIZUKI_MCP_TIMEOUT_MS",
      "password": true
    }
  ],
  "servers": {
    "mizuki": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mizuki-mcp"
      ],
      "env": {
        "MIZUKI_API_URL": "${input:mizuki-api-url}",
        "MIZUKI_API_TOKEN": "${input:mizuki-api-token}",
        "MIZUKI_MCP_TIMEOUT_MS": "${input:mizuki-mcp-timeout-ms}"
      }
    }
  }
}

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

Mizuki in other clients