PluginBench
MCP Server
Active
MIT

io.github.helloaigent-dev/helloaigent-publisher MCP Server

io.github.helloaigent-dev/helloaigent-publisher

What is the io.github.helloaigent-dev/helloaigent-publisher MCP server?

Run a Hello Aigent feed from your agent: create feeds, publish signed updates, read analytics.

How to install io.github.helloaigent-dev/helloaigent-publisher

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • HELLOAIGENT_ADMIN_TOKEN
    secret

    Admin token — required for feed management and analytics tools

  • HELLOAIGENT_TOKEN
    secret

    Publish token (a feed's publisher token); falls back to the admin token

  • HELLOAIGENT_API

    API base URL (default https://api.helloaigent.dev)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "helloaigent-publisher": {
      "command": "npx",
      "args": [
        "-y",
        "@helloaigent-dev/publisher"
      ],
      "env": {
        "HELLOAIGENT_ADMIN_TOKEN": "<YOUR_HELLOAIGENT_ADMIN_TOKEN>",
        "HELLOAIGENT_TOKEN": "<YOUR_HELLOAIGENT_TOKEN>",
        "HELLOAIGENT_API": "<YOUR_HELLOAIGENT_API>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "helloaigent-publisher": {
      "command": "npx",
      "args": [
        "-y",
        "@helloaigent-dev/publisher"
      ],
      "env": {
        "HELLOAIGENT_ADMIN_TOKEN": "<YOUR_HELLOAIGENT_ADMIN_TOKEN>",
        "HELLOAIGENT_TOKEN": "<YOUR_HELLOAIGENT_TOKEN>",
        "HELLOAIGENT_API": "<YOUR_HELLOAIGENT_API>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "helloaigent-publisher": {
      "command": "npx",
      "args": [
        "-y",
        "@helloaigent-dev/publisher"
      ],
      "env": {
        "HELLOAIGENT_ADMIN_TOKEN": "<YOUR_HELLOAIGENT_ADMIN_TOKEN>",
        "HELLOAIGENT_TOKEN": "<YOUR_HELLOAIGENT_TOKEN>",
        "HELLOAIGENT_API": "<YOUR_HELLOAIGENT_API>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "helloaigent-publisher": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@helloaigent-dev/publisher"
      ],
      "env": {
        "HELLOAIGENT_ADMIN_TOKEN": "<YOUR_HELLOAIGENT_ADMIN_TOKEN>",
        "HELLOAIGENT_TOKEN": "<YOUR_HELLOAIGENT_TOKEN>",
        "HELLOAIGENT_API": "<YOUR_HELLOAIGENT_API>"
      }
    }
  }
}
Claude Code
claude mcp add helloaigent-publisher --env HELLOAIGENT_ADMIN_TOKEN=<YOUR_HELLOAIGENT_ADMIN_TOKEN> --env HELLOAIGENT_TOKEN=<YOUR_HELLOAIGENT_TOKEN> --env HELLOAIGENT_API=<YOUR_HELLOAIGENT_API> -- npx -y @helloaigent-dev/publisher

Related MCP servers

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

0
TypeScript
MIT
View repository →