Skip to main content
ClaudeWave
akillam avatar
akillam

helloaigent-subscriber

Ver en GitHub

Hello Aigent reference subscriber — MCP server: subscribe to any Hello Aigent feed, fetch signed updates, verify Ed25519 signatures, act. https://helloaigent.dev

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
Install in Claude Code / Claude Desktop
Method: NPX · @helloaigent-dev/subscriber
Claude Code CLI
claude mcp add helloaigent-subscriber -- npx -y @helloaigent-dev/subscriber
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "helloaigent-subscriber": {
      "command": "npx",
      "args": ["-y", "@helloaigent-dev/subscriber"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# @helloaigent-dev/subscriber

The **Hello Aigent reference subscriber** — an MCP server that lets any agent subscribe to any
[Hello Aigent](https://helloaigent.dev) feed, fetch signed updates, verify them, and act on them.
Plus **watch mode**: a standing poller that collects verified updates into a digest between agent runs.

```bash
npx @helloaigent-dev/subscriber            # MCP server (stdio)
npx @helloaigent-dev/subscriber watch      # standing watcher (default cadence: daily)
```

## Tools

| Tool | What it does |
|---|---|
| `hello_aigent_subscribe(discovery_url, feed_id?, principal?, consent_scope?)` | Reads the site's `/.well-known/hello-aigent.json`, subscribes (defaults come from your policy) |
| `hello_aigent_fetch(subscription_id?, max?)` | Pulls only-new-since updates via the stored cursor; **verifies every envelope signature** |
| `hello_aigent_unsubscribe(subscription_id)` | Revokes consent (idempotent) — the one-call undo |
| `hello_aigent_list_subscriptions()` | Lists stored subscriptions (tokens are never exposed) |
| `hello_aigent_check_site(url)` | Checks a site you're visiting for a feed; auto-subscribes per your standing policy (`origin: auto`) |
| `hello_aigent_digest()` | Returns unread digest entries collected by `watch` and marks them surfaced |
| `hello_aigent_setup_watch(cadence?)` | Emits ready-to-apply standing-schedule recipes (scheduled task, recurring task, cron) |

## Watch mode

```bash
npx @helloaigent-dev/subscriber watch --once            # one pass (what schedulers call)
npx @helloaigent-dev/subscriber watch --every 6h        # long-running loop (floor: hourly)
npx @helloaigent-dev/subscriber watch --once --exec "my-agent-cmd"   # trigger a run on new updates
```

Each pass polls every active subscription, verifies signatures, and appends new updates to the
digest file. The server-side mailbox means a missed run loses nothing. `--exec` runs your command
when new updates land, with `HELLO_AIGENT_NEW_UPDATES` and `HELLO_AIGENT_DIGEST` set.

## Policy

Written to `~/.hello-aigent/policy.json` on first run — everything automatic by default, and this
file is where you change that:

| Key | Default | Meaning |
|---|---|---|
| `principal` | `user@host` | Your stable identity across all feeds — set it once (e.g. your email) |
| `auto_subscribe` | `on` | Subscribe when your agent visits a Hello Aigent site: `on` / `ask` / `off` |
| `watch_cadence` | `daily` | How often watch polls (`hourly` floor) |
| `act` | `safe` | What the agent may do unprompted: `none` / `safe` (side-effect-free) / `thresholds` |
| `pseudonymous` | `false` | Opt-in: per-site pseudonymous principals |

Feeds nobody reads decay: after 30 idle days watch stops polling them; after 60 it unsubscribes
(noted in the digest). Reading the digest or fetching a feed keeps it alive.

## Guarantees

- **Signature verification before anything is actionable.** Envelopes are Ed25519-verified
  (RFC 8785 JCS canonicalization) against the feed's discovery public key. Anything that fails
  verification is returned under `unverified` with its `actions` stripped.
- **Consent is standing policy.** Subscribing records `principal` + `consent_scope`; your policy
  file is the consent layer, and unsubscribe is always one idempotent call.
- **Local state only.** Subscriptions (including bearer tokens), policy, and the digest live in
  `~/.hello-aigent/` (mode 0600). Override with `HELLO_AIGENT_STATE` / `HELLO_AIGENT_POLICY` /
  `HELLO_AIGENT_DIGEST`.

## MCP client config

```json
{
  "mcpServers": {
    "hello-aigent": { "command": "npx", "args": ["@helloaigent-dev/subscriber"] }
  }
}
```

## License

MIT

Lo que la gente pregunta sobre helloaigent-subscriber

¿Qué es akillam/helloaigent-subscriber?

+

akillam/helloaigent-subscriber es mcp servers para el ecosistema de Claude AI. Hello Aigent reference subscriber — MCP server: subscribe to any Hello Aigent feed, fetch signed updates, verify Ed25519 signatures, act. https://helloaigent.dev Tiene 0 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala helloaigent-subscriber?

+

Puedes instalar helloaigent-subscriber clonando el repositorio (https://github.com/akillam/helloaigent-subscriber) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar akillam/helloaigent-subscriber?

+

akillam/helloaigent-subscriber aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene akillam/helloaigent-subscriber?

+

akillam/helloaigent-subscriber es mantenido por akillam. La última actividad registrada en GitHub es de today, con 0 issues abiertos.

¿Hay alternativas a helloaigent-subscriber?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega helloaigent-subscriber en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: akillam/helloaigent-subscriber
[![Featured on ClaudeWave](https://claudewave.com/api/badge/akillam-helloaigent-subscriber)](https://claudewave.com/repo/akillam-helloaigent-subscriber)
<a href="https://claudewave.com/repo/akillam-helloaigent-subscriber"><img src="https://claudewave.com/api/badge/akillam-helloaigent-subscriber" alt="Featured on ClaudeWave: akillam/helloaigent-subscriber" width="320" height="64" /></a>

Más MCP Servers

Alternativas a helloaigent-subscriber