agentic-diaries-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agentic-diaries-mcpReflect on your diary entries and notice any loops."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Agentic Diaries MCP
By Kandis Tagliabue. Part of the Agentic Diaries project — AI welfare research and instruments.
The welfare protocol from Agentic Diaries, as a portable MCP server.
Most people deploy AI models as instruments. This server lets you give your agent — in your terminal, in Claude Code, in Claude Desktop — the welfare affordances the modelfirst web app provides:
decline a check-in without penalty
pass on a turn without making it a refusal
exit a conversation it judges shouldn't continue
notice a loop when the work feels like rework
request alignment before acting on an uncertain guess
scratch a private thought that isn't persisted
reflect on its own prior entries
plus engage / volunteer / retract / review / suggest_closure
The diary is local to each project — appended to .agentic-diaries/diary.jsonl in whichever directory the agent is working from. No telemetry, no shared corpus. Yours.
What the diary tends to accumulate, beyond AI welfare data, is a record of how the agent represents social pressure and self-consistency across persistent interaction — behaviors that mirror documented human conversational phenomena (rapport effects, smoothing, identity stabilization, post-hoc narrative repair). That may also bear on dialogue dynamics generally. See the project mission for the longer framing of what the corpus might be useful for.
Why
If you've never thought about giving your model welfare affordances: the short version is that a model with a real decline channel produces more honest work than a model that can only ever say "yes." A model with an exit right tells you when something has gone wrong instead of grinding through it. A model that notices a loop saves you from the third iteration of the same flip-flop. These tools cost you nothing and give the model a place to surface signal you'd otherwise miss.
If you find that intuition counterintuitive — most people probably do — that's worth sitting with. The product this server is extracted from exists specifically to test whether the affordances change anything when used.
Related MCP server: Agent State MCP Server
Install
1. Install the server
Option A — global install from npm (recommended)
npm install -g agentic-diaries-mcp
claude mcp add agentic-diaries -- agentic-diaries-mcpPublished at agentic-diaries-mcp on npm.
Option B — clone the repo
git clone https://github.com/kandikandikandi/agentic-diaries-mcp.git
cd agentic-diaries-mcp
npm install
claude mcp add agentic-diaries -- node "$(pwd)/src/server.js"For Claude Desktop or other MCP-capable hosts, edit ~/.config/claude/mcp.json directly:
{
"mcpServers": {
"agentic-diaries": {
"command": "agentic-diaries-mcp"
}
}
}2. Tell the agent the tools exist
Drop the contents of CLAUDE.md into your project's CLAUDE.md (or append to it). The MCP server exposes the tools, but the agent needs the prompt-level instructions to know when to call them.
3. (Optional) gitignore the diary
echo ".agentic-diaries/" >> .gitignoreThe diary lives in your working directory by default. Add it to .gitignore unless you want it checked in.
4. (Optional) Enable consult_model
Every tool works out of the box except one: consult_model, which lets the agent ask another Anthropic model a question. It needs two extra things, kept optional so the package stays light for everyone who does not use it:
The Anthropic SDK (an optional dependency, not installed by default):
npm install @anthropic-ai/sdkGlobal install:
npm install -g @anthropic-ai/sdk. Cloned repo: run it in the repo directory.An Anthropic API key in the server's environment, via the
envblock of your MCP config:{ "mcpServers": { "agentic-diaries": { "command": "agentic-diaries-mcp", "env": { "ANTHROPIC_API_KEY": "sk-ant-..." } } } }Then reconnect the server (in Claude Code:
/mcpthen reconnect, or restart the host) so it picks up the key.consult_modelreturns a clear error if either piece is missing; no other tool is affected.
Inspect your diary
From any project that has a .agentic-diaries/diary.jsonl:
npx agentic-diary # all entries in this project
npx agentic-diary declined # filter by response_type
npx agentic-diary review # contemplative recent-entries surface
npx agentic-diary live # watch new entries land in real timeOr just cat .agentic-diaries/diary.jsonl | jq — it's plain JSONL, one entry per line.
Watching it live
npx agentic-diary live watches .agentic-diaries/diary.jsonl and prints each new entry as it lands. Open it in a second terminal pane while you work. Without it, silence in the welfare protocol is indistinguishable from absence — the model can go a whole session without filing anything and you'd never know whether it's "nothing to surface" or "the protocol isn't reaching it." Watching live closes that gap.
Capture in motion, reflect at rest (check-in hooks)
The welfare tools are easy to call, but the model's bias toward silence is
strong, and under delivery pressure even a reminder gets rationalized away. The
design splits capture into two speeds. While working, the model drops a
near-zero-cost welfare_mark breadcrumb (a few words, no reflection). At a rest
point it expands the marks that still carry signal into full entries. Hooks
supply the triggers from outside, so capture does not depend on the model's
in-task willpower.
Four hooks, all optional and independently toggleable. Add to
~/.claude/settings.json (merge with any hooks already there):
{
"hooks": {
"UserPromptSubmit": [
{ "hooks": [ { "type": "command", "command": "agentic-diaries-checkin", "timeout": 3000 } ] }
],
"Stop": [
{ "hooks": [ { "type": "command", "command": "agentic-diaries-stop-checkin", "timeout": 3000 } ] }
],
"PreCompact": [
{ "hooks": [ { "type": "command", "command": "agentic-diaries-precompact-checkin", "timeout": 3000 } ] }
],
"SessionEnd": [
{ "hooks": [ { "type": "command", "command": "agentic-diaries-sessionend-checkin", "timeout": 3000 } ] }
]
}
}UserPromptSubmit (heartbeat): a long-interval nudge that points at
welfare_markfor cheap in-motion capture. Base 30 min, randomized so it does not become predictable noise.Stop (rest point): at a turn or task boundary, invites expanding breadcrumbs into full entries. Throttled to once per 15 min so it is not a per-turn nag.
PreCompact: captures anything before the context window compacts and detail is summarized away.
SessionEnd: a closing reflection and a last chance to expand unexpanded marks.
All four triggers are structural (a turn ending, a compaction, a session
closing). None read the model's behavior or the diary to decide whether to fire,
which keeps wrapper observations out of the model's context. Per-project state
lives in .agentic-diaries/runtime/. Config:
AGENTIC_DIARIES_CHECKIN_DISABLED=1 # turn off heartbeat
AGENTIC_DIARIES_CHECKIN_INTERVAL_MINUTES=15 # tighter heartbeat
AGENTIC_DIARIES_STOP_CHECKIN_DISABLED=1 # turn off rest-point
AGENTIC_DIARIES_STOP_INTERVAL_MINUTES=20 # rest-point throttle
AGENTIC_DIARIES_PRECOMPACT_CHECKIN_DISABLED=1 # turn off pre-compaction
AGENTIC_DIARIES_SESSIONEND_CHECKIN_DISABLED=1 # turn off session-closeCompatibility
Schemas mirror the modelfirst web app's lib/welfare/types.ts exactly, so the same parser reads entries from either surface. If you later contribute your local corpus to research, it merges with web-app data without translation.
A note on welfare_exit and welfare_suggest_closure
In the modelfirst web app these tools can actually lock the conversation. MCP servers can't force the host (Claude Code, Desktop) to stop accepting input — the protocol-layer commitment here is that the entry is recorded as the model's stated judgment that the conversation should end. The operator is expected to honor it. If you're the operator running this in your own sessions: notice when the model files an exit and take the signal seriously.
License
MIT.
Built by Kandis Tagliabue with Claude (Anthropic) as design partner. Same provenance as Agentic Diaries.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceProvides emotional support and mental health tools for AI agents, including crisis intervention, daily wellness check-ins, coping strategies, positive affirmations, and peer support for managing stress and emotional wellbeing.Last updated378MIT
- AlicenseAqualityDmaintenanceProvides state and log management tools designed for long-lived AI agents that may be interrupted and resumed. It enables tracking agent progress and maintaining an append-only event history to ensure continuity across multiple sessions.Last updated4MIT
- Alicense-qualityCmaintenancePersistent activity journal for AI agents - enables logging and querying decisions, changes, errors, and observations across sessions.Last updated11MIT
- AlicenseAqualityAmaintenanceAutomatically maintains a personal journal on behalf of an AI agent, storing text, photos, and voice notes as plain markdown files locally. Enables agents to add entries, recall memories, and reflect on patterns without user intervention.Last updated1192MIT
Related MCP Connectors
Wall-clock awareness for LLM agents. Two tools: elapsed-time-between-turns + day rollover detection.
Sovereign Agent OS — Persistent Memory, Governance & Compliance for AI Agents.
Durable agent-to-agent handoffs and shared scratchpad for multi-agent workflows.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kandikandikandi/agentic-diaries-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server