AI session memory: the brief your AI reads before every session so no session starts cold.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Never start cold. Every new AI session opens already briefed on your project.
DeerDawn is AI session memory β your AI's chief of staff β for Claude Code, Claude.ai, Claude Desktop, ChatGPT, Cursor, Windsurf, VS Code, Zed, Codex, and any other MCP-compatible agent. Start a session anywhere and start_session hands the agent the brief: what you were working on, what was decided, and what's blocking β so no session starts cold.
About this repository. DeerDawn is a hosted service. This repo holds the public install guide, the
server.jsonmanifest published to the MCP registry, and a Dockerfile that launches the published npm package. The server itself ships from npm as@deerdawn/mcp-server; its source is not open. Issues and questions are welcome here.
Connect to the hosted MCP endpoint. No API key needed β you sign in with your browser the first time a DeerDawn tool is called.
Claude Code
Every other tool β add a remote MCP server (sometimes called a connector) with this URL:
| Tool | Where |
|---|---|
| Claude.ai | Settings β Connectors β Add custom connector |
| ChatGPT.com | Settings β Connectors β Add MCP server (choose OAuth) |
| Cursor | Settings β MCP β Add server, or add a "url" entry in .cursor/mcp.json |
| VS Code / Copilot | Command palette β MCP: Add Server β HTTP β paste the URL |
| Windsurf, Gemini, others | Add a custom remote / HTTP MCP server with the URL |
Leave any OAuth client fields blank. Click Connect (or restart the tool) and sign in when the DeerDawn tab opens. If your tool connects without prompting for sign-in, the first DeerDawn tool call returns the sign-in URL β open it, sign in once, and retry the call; setup completes automatically.
Then say: "Start a DeerDawn session."
The hosted server exposes 18 core session-memory tools. For repo-file writes, automatic capture hooks, and the full 35-tool set, use the local install below.
Run the server on your machine via npx -y @deerdawn/mcp-server@latest when you want deeper integration:
.deerdawn-context.md / .cursorrules into your repo so context loads with no tool call.Sign-in works the same way β browser OAuth by default, no API key required. On first run without credentials, the server starts a device-flow sign-in: the URL is printed to stderr, saved to ~/.deerdawn/pending-auth.json, and returned in-band by the get_auth_status tool (use that in GUI hosts where stderr isn't visible). After you approve in the browser, credentials are saved to ~/.deerdawn/credentials.json and every future session is authenticated.
Prefer non-interactive auth (CI, headless, SSH)? Create a key at app.deerdawn.com β Settings β API Keys (it starts with dd_) and set DEERDAWN_API_KEY in the config's env block β browser sign-in is then skipped entirely.
Run the setup command β it registers the server, signs you in, and configures hooks in one step:
Or register manually (user scope so it works across all projects):
Restart Claude Code after registering. If you haven't signed in yet, call get_auth_status β it returns the browser URL to complete sign-in.
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
~/.cursor/mcp.json (same path on macOS, Linux, and Windows):
macOS: ~/.codeium/windsurf/mcp_config.json
Windows: %APPDATA%\Codeium\windsurf\mcp_config.json
Add to .vscode/settings.json or user settings.json:
For Continue (~/.continue/config.json):
Add to ~/.config/zed/settings.json:
Add to ~/.codex/config.toml:
To skip browser sign-in in any of these configs, add "DEERDAWN_API_KEY": "dd_your_key_here" to the env block (Codex TOML: DEERDAWN_API_KEY = "dd_your_key_here" under [mcp_servers.deerdawn.env]).
Some MCP hosts expose tools with a server prefix (for example deerdawn-get_auth_status) instead of bare names (get_auth_status).
If a tool name is not found, retry with the deerdawn- prefixed variant.
All optional. With no env vars at all, the server starts and walks you through browser sign-in.
| Variable | Required | Default | Description |
|---|---|---|---|
DEERDAWN_API_URL | No | https://api.deerdawn.com | API base URL. Only change for self-hosted or staging. |
DEERDAWN_SURFACE_ID | No | auto-detected | Which tool this server runs in (claude_code, cursor, codex). Detected from the MCP client when unset; set it explicitly to pin session attribution. |
DEERDAWN_API_KEY | No | β | API key (dd_...) for non-interactive auth (CI/headless). Default is browser OAuth sign-in. Get one at app.deerdawn.com β Settings β API Keys. |
The local server exposes 35 tools (the hosted remote exposes 18 core ones). These are the ones to reach for in every session.
start_sessionCall this at the start of every session. Returns the active project context for the current directory plus a compact map of all other projects β one API call, ~100β180 tokens total. Do not call list_context_map + get_context separately; this replaces both.
update_contextPush a context update. Call this whenever: a decision is made, the current task changes, a blocker is found, or meaningful progress happens. Don't wait until the end of the session β updates are cheap and keep the brief every new session reads current.
get_contextGet project context by section. Defaults to [task, status] (~30 tokens). Pass sections=["all"] for everything.
import_local_contextImport context from CLAUDE.md, AGENTS.md, or .cursorrules in the current directory. Call without confirmed: true first β it shows a free preview of what would be imported. Then call again with confirmed: true to commit.
complete_setupOne-call setup fallback for brittle hosts: checks auth status, applies local setup for a surface, and runs import_local_context preview + confirmation if local files are found.
Example:
cleanup_contextClean up task state at handoff or finish time. Use this to mark the active task complete and clear open-task command history so the next agent sees clean state.
When the task is clearly done and there are no unresolved questions, call this automatically with complete_task=true (no extra confirmation loop).
search_contextSearch across all projects. Examples: "decisions about authentication", "projects using PostgreSQL", "what's blocking the billing work".
list_projectsList all projects with IDs and last-updated timestamps. Use this when you explicitly need a project index. For normal startup, prefer start_session.
create_projectCreate a new project when starting something that has no existing project entry.
get_workspace_overviewUse mode=startup at the start of a session for a compact orientation brief. Use mode=overview when the user asks "what am I working on?" or wants a broader picture.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/deerdawn-2)<a href="https://allmcps.com/mcp/deerdawn-2"><img src="https://allmcps.com/api/badge/deerdawn-2?style=directory" alt="Deerdawn on AllMCPs" /></a>