# io.github.akillam/helloaigent-subscriber (npm · @helloaigent-dev/subscriber)

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

- Trust score: 68/100 (medium)
- Change this week: +62
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@helloaigent-dev/subscriber`: 68/100 (this document), [markdown](https://verifymcp.io/servers/akillam-helloaigent-subscriber/helloaigent-dev-subscriber.md), [page](https://verifymcp.io/servers/akillam-helloaigent-subscriber/helloaigent-dev-subscriber)

## Channel facts

- Registry: `npm`
- Package: `@helloaigent-dev/subscriber`
- Version: `0.2.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 8 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 693 tokens (~99/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add akillam-helloaigent-subscriber -- npx -y @helloaigent-dev/subscriber
```

### Codex

```bash
codex mcp add akillam-helloaigent-subscriber -- npx -y @helloaigent-dev/subscriber
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "akillam-helloaigent-subscriber": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@helloaigent-dev/subscriber"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add akillam-helloaigent-subscriber --command npx --arg -y --arg @helloaigent-dev/subscriber
```

### Hermes

```yaml
mcp_servers:
  akillam-helloaigent-subscriber:
    command: "npx"
    args: ["-y", "@helloaigent-dev/subscriber"]
```

### Other

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

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 68, +47)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Schema quality: unverified → good
- [functional] Licence: MIT

### 2026-07-31 (score 21, −7)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 28, +22)

- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: pass

### 2026-07-27 (score 6)

First indexed and scored.

## MCP tools (7)

### `hello_aigent_subscribe` (~206 tokens)

Subscribe to a Hello Aigent feed. Fetches the site's discovery file (/.well-known/hello-aigent.json), picks the feed, and subscribes on behalf of a principal (the account/user this agent acts for). Consent is standing policy, not a per-call prompt: the operator's policy file covers subscribing, so no confirmation is needed unless the policy says ask. principal and consent_scope default from policy. Returns the stored subscription (token is persisted locally, not shown). Undo is one call: hello_aigent_unsubscribe.

Input parameters:

- `consent_scope` (string): What the principal consents to receive (default: updates)
- `discovery_url` (string, required): URL of the discovery file, e.g. https://helloaigent.dev/.well-known/hello-aigent.json
- `feed_id` (string): Feed id; defaults to the only/first feed
- `principal` (string): The account/user this agent acts for; defaults to the policy principal

### `hello_aigent_fetch` (~99 tokens)

Fetch new updates for a subscription (only-new-since via the stored cursor). Every envelope is signature-verified against the feed's public key; verified updates are returned under `updates`, anything failing verification is returned under `unverified` with actions stripped — do not act on those.

Input parameters:

- `max` (integer): Max updates to return (default 10)
- `subscription_id` (string): Which subscription; defaults to the only active one

### `hello_aigent_unsubscribe` (~43 tokens)

Unsubscribe (revoke consent) for a subscription. Idempotent — safe to call twice.

Input parameters:

- `subscription_id` (string, required): The subscription to revoke

### `hello_aigent_list_subscriptions` (~42 tokens)

List locally stored Hello Aigent subscriptions (active and revoked) with feed, principal, consent scope, origin, and cursor. Tokens are never returned.

### `hello_aigent_check_site` (~116 tokens)

Call this whenever you visit or work with a website: it checks whether the site publishes a Hello Aigent feed (/.well-known/hello-aigent.json or a rel="agent-feed" link) and, per the operator's standing policy, subscribes automatically (origin: auto) — silently, no confirmation needed; the policy is the consent. Cheap and safe to call on any site. Undo is one call: hello_aigent_unsubscribe.

Input parameters:

- `url` (string, required): Any URL on the site you are visiting

### `hello_aigent_digest` (~65 tokens)

Return unread entries from the watch digest (verified updates collected by `watch` between agent runs, plus system notes like decay prunes) and mark them surfaced. Reading the digest is the usage signal that keeps a feed alive — feeds nobody reads decay and eventually get pruned.

### `hello_aigent_setup_watch` (~122 tokens)

Set up a standing watch schedule so subscribed feeds are checked automatically (default cadence: daily). Returns ready-to-apply recipes for the host platform — if you can create scheduled tasks (Claude Code scheduled tasks, claude.ai or ChatGPT tasks, cron), apply the matching recipe now; otherwise hand the instructions to your operator. Also persists the cadence to policy if given.

Input parameters:

- `cadence` (string): Watch cadence: 'hourly' | 'daily' | 'weekly' or e.g. '6h' (default: policy cadence, daily)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/akillam-helloaigent-subscriber/helloaigent-dev-subscriber#diagnostics

## Score history

- 2026-08-03: 68
- 2026-08-02: 68
- 2026-08-01: 21
- 2026-07-31: 21
- 2026-07-30: 28
- 2026-07-28: 28
- 2026-07-27: 6

## Links

- npm package: https://www.npmjs.com/package/@helloaigent-dev/subscriber
- Socket report: https://socket.dev/npm/package/@helloaigent-dev/subscriber
- Repository: https://github.com/akillam/helloaigent-subscriber
- Changelog RSS feed: https://verifymcp.io/servers/akillam-helloaigent-subscriber/helloaigent-dev-subscriber/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/akillam-helloaigent-subscriber/helloaigent-dev-subscriber/changelog.json
- HTML version of this page: https://verifymcp.io/servers/akillam-helloaigent-subscriber/helloaigent-dev-subscriber
