Dear Agent
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DEAR_AGENT_DIR | No | Directory for the diary files. Defaults to ~/.dear-agent |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| add_entryA | 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. |
| add_photoB | Save a photo into the user's diary for a day (local path or base64), with an optional caption. |
| add_voice_noteB | Save a voice note into the user's diary for a day (local path or base64), with an optional transcript. |
| get_dayA | Read back one day's full diary entry, including any photos and voice notes filed that day. |
| get_rangeA | Read diary entries between two dates (inclusive). |
| searchB | Search the whole diary for a word or phrase; returns matching days with snippets. |
| on_this_dayB | Resurface entries from this same calendar date in past years (true anniversaries). The memory people fall in love with. |
| weekly_digestB | Pull the last 7 days of entries so you can write the user a short weekly reflection. |
| list_daysA | List every day that has a diary entry, oldest to newest. |
| recallB | Turn the diary into living memory of the person. With |
| reflectA | 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. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| daily_checkin | A warm end-of-day check-in: ask about the day and save it to the diary. |
| weekly_reflection | Write me a warm reflection on my week from the diary. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| diary-today | |
| diary-index |
TDQS
Scored across 11 tools
Each tool has a distinct purpose: adding different types of entries, reading entries in various ways, searching, and generating reflections. No two tools have overlapping functionality.
All tool names follow a consistent verb_noun pattern with lowercase and underscores (e.g., add_entry, get_day, list_days). The naming is predictable and uniform.
11 tools is a well-scoped set for a diary/memory application, covering entry addition, retrieval, search, and insight generation without being excessive or sparse.
The tool set covers core diary operations (add, read, search, reflect) but lacks update/delete capabilities. However, the domain may be append-only, so this is a minor gap.