Skip to content
VS Code

unblu for VS Code

io.github.detailobsessed/unblu

Operate Unblu deployments: health checks, conversation ops, and 300+ API endpoints

client:VS Code transport:stdio runtime:pypi

Install unblu in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "unblu-base-url",
      "description": "UNBLU_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unblu-api-key",
      "description": "UNBLU_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unblu-username",
      "description": "UNBLU_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "unblu-password",
      "description": "UNBLU_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "unblu": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "unblu-mcp"
      ],
      "env": {
        "UNBLU_BASE_URL": "${input:unblu-base-url}",
        "UNBLU_API_KEY": "${input:unblu-api-key}",
        "UNBLU_USERNAME": "${input:unblu-username}",
        "UNBLU_PASSWORD": "${input:unblu-password}"
      }
    }
  }
}

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

unblu in other clients