# io.github.BitmapAsset/dear-agent (npm · dear-agent)

Your AI agent keeps your diary for you. Local-first, private, works in any agent.

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

## Components

- npm · `dear-agent`: 64/100 (this document), [markdown](https://verifymcp.io/servers/bitmapasset-dear-agent/dear-agent.md), [page](https://verifymcp.io/servers/bitmapasset-dear-agent/dear-agent)

## Channel facts

- Registry: `npm`
- Package: `dear-agent`
- Version: `0.2.3`
- 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 34 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 61/100
  - 50% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 740 tokens (~56/item across 13 items; 11 tools + 2 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**: 81/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 44% 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 bitmapasset-dear-agent -- npx -y dear-agent
```

### Codex

```bash
codex mcp add bitmapasset-dear-agent -- npx -y dear-agent
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "bitmapasset-dear-agent": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "dear-agent"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add bitmapasset-dear-agent --command npx --arg -y --arg dear-agent
```

### Hermes

```yaml
mcp_servers:
  bitmapasset-dear-agent:
    command: "npx"
    args: ["-y", "dear-agent"]
```

### Other

```json
{
  "mcpServers": {
    "bitmapasset-dear-agent": {
      "command": "npx",
      "args": [
        "-y",
        "dear-agent"
      ]
    }
  }
}
```

## 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-03 (score 64, −3)

No change was recorded against any check on this day. Supply Chain Security went from 97 to 87. Other categories moved too: Stability & Change Management rose 4.

### 2026-08-02 (score 67, +46)

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

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

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

### 2026-07-28 (score 24, −21)

- [functional regression] Schema quality: 50 → unverified
- [functional regression] Tool coverage: 100 → unverified

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

First indexed and scored.

## MCP tools (11)

### `add_entry` (~124 tokens)

Record a text moment in the user's diary. Capture whenever they share something worth remembering — an event, feeling, win, or decision. The user never types into an app; you keep the diary for them.

Input parameters:

- `date` (string): Day: "today" (default), "yesterday", or YYYY-MM-DD.
- `mood` (string): Optional one-word mood.
- `tags` (array): Optional short tags, e.g. work, family, health.
- `text` (string, required): What happened, in the user's own meaning, first person where it fits.

### `add_photo` (~81 tokens)

Save a photo into the user's diary for a day (local path or base64), with an optional caption.

Input parameters:

- `caption` (string)
- `data` (string)
- `date` (string): Day: "today" (default), "yesterday", or YYYY-MM-DD.
- `filename` (string)
- `path` (string)

### `add_voice_note` (~83 tokens)

Save a voice note into the user's diary for a day (local path or base64), with an optional transcript.

Input parameters:

- `data` (string)
- `date` (string): Day: "today" (default), "yesterday", or YYYY-MM-DD.
- `filename` (string)
- `path` (string)
- `transcript` (string)

### `get_day` (~49 tokens)

Read back one day's full diary entry, including any photos and voice notes filed that day.

Input parameters:

- `date` (string): Day: "today" (default), "yesterday", or YYYY-MM-DD.

### `get_range` (~31 tokens)

Read diary entries between two dates (inclusive).

Input parameters:

- `end` (string, required)
- `start` (string, required)

### `search` (~37 tokens)

Search the whole diary for a word or phrase; returns matching days with snippets.

Input parameters:

- `limit` (integer)
- `query` (string, required)

### `on_this_day` (~56 tokens)

Resurface entries from this same calendar date in past years (true anniversaries). The memory people fall in love with.

Input parameters:

- `date` (string): Day: "today" (default), "yesterday", or YYYY-MM-DD.

### `weekly_digest` (~50 tokens)

Pull the last 7 days of entries so you can write the user a short weekly reflection.

Input parameters:

- `end` (string): Day: "today" (default), "yesterday", or YYYY-MM-DD.

### `list_days` (~21 tokens)

List every day that has a diary entry, oldest to newest.

### `recall` (~113 tokens)

Turn the diary into living memory of the person. With `about`, returns everything the diary knows about a person/place/topic across time. Without it, returns a profile digest (recurring people, themes, mood pattern, open commitments) for you to synthesize into who this person is. This is what makes Dear Agent a memory, not just a notebook.

Input parameters:

- `about` (string): A person, place, project, or topic to recall. Omit for a whole-life profile digest.
- `limit` (integer)

### `reflect` (~84 tokens)

Get reflection material so you can proactively talk back to the user: patterns, progress, open loops, and on-this-day memories over the last week or month. Use for a daily check-in or weekly recap so the diary feels alive.

Input parameters:

- `end` (string): Day: "today" (default), "yesterday", or YYYY-MM-DD.
- `period` (string)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/bitmapasset-dear-agent/dear-agent#diagnostics

## Score history

- 2026-08-03: 64
- 2026-08-02: 67
- 2026-08-01: 21
- 2026-07-31: 21
- 2026-07-30: 24
- 2026-07-28: 24
- 2026-07-27: 45

## Links

- npm package: https://www.npmjs.com/package/dear-agent
- Socket report: https://socket.dev/npm/package/dear-agent
- Repository: https://github.com/BitmapAsset/dear-agent
- Changelog RSS feed: https://verifymcp.io/servers/bitmapasset-dear-agent/dear-agent/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/bitmapasset-dear-agent/dear-agent/changelog.json
- HTML version of this page: https://verifymcp.io/servers/bitmapasset-dear-agent/dear-agent
