Skip to content
VS Code

helloaigent subscriber for VS Code

io.github.helloaigent-dev/helloaigent-subscriber

Subscribe your agent to Hello Aigent feeds: discover, fetch signed updates, verify, and act.

client:VS Code transport:stdio runtime:npm

Install helloaigent subscriber in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hello-aigent-state",
      "description": "HELLO_AIGENT_STATE",
      "password": true
    }
  ],
  "servers": {
    "helloaigent-subscriber": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@helloaigent-dev/subscriber"
      ],
      "env": {
        "HELLO_AIGENT_STATE": "${input:hello-aigent-state}"
      }
    }
  }
}

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

helloaigent subscriber in other clients