Claude-Atlas-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., "@Claude-Atlas-MCPget landscape for work"
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.
Claude-Atlas-MCP
Self-hosted MCP server that gives Claude persistent memory across conversations — entities, observations, history, and time-based reminders, in a lightweight Node/SQLite backend you run yourself.
Point Claude at it as an MCP connector and it can remember what you're working on from one conversation to the next: ongoing projects, decisions and their rationale, facts about you and your setup, and things to resurface on a future date.
Why
Claude forgets everything when a conversation ends. Atlas is a small, boring, durable memory layer you own end to end — no third-party service, no vendor lock-in. It's a single Node process backed by one SQLite file. Run it on a home server, a VPS, or your laptop.
Related MCP server: claude-memory-mcp
Data model
Concept | What it is |
Entity | A topic or project you want Claude to track (e.g. "Home Network", "Q3 Planning"). Has a name and a one-line summary. |
Observation | A single fact attached to an entity ("switched the router to the 6E band on 2026-06-01"). The atomic unit of memory. Can be edited in place or marked protected against accidental deletion. |
History event | A notable thing that happened, logged to the timeline for later recall. |
Reminder | A note with a |
Section | A top-level namespace — one of three fixed values, |
Tools
The server exposes 16 MCP tools:
Reading
get_landscape— everything in a section (withsharedauto-merged in): all entities with their observations, plus any due reminders. Call at the start of a conversation to get oriented.search— keyword search across entities, observations, and history.get_entity— one entity and its observations by name.get_history— the timeline of logged events.
Writing
upsert_entity— create or update an entity's name/summary.add_observation— attach a fact to an entity.update_observation— edit a fact in place; the ID and its history stay stable. Works on protected rows.remove_observation— drop a fact that's stale or done (refuses if protected).protect_observation/unprotect_observation— mark a fact as protected from deletion, or lift that protection.remove_entity— delete an entity and its observations (refuses if any observation is protected).log_event— record a notable event to history.
Reminders
create_reminder— a note with atrigger_date(and optional entity link).list_reminders— all reminders, or just those currently due.dismiss_reminder— mark a reminder handled (it stops surfacing).remove_reminder— delete a reminder outright.
Every tool response also carries a small time footer — current server time (America/New_York) plus elapsed time since that token's last call — so the model never has to guess or do date math from a stale mental clock.
Groom worker
src/groom.js is a standalone script meant to run on a schedule (cron, or
docker exec <container> node src/groom.js). It's intentionally report-only
and mechanical — no LLM calls, no deletion of your data:
flags likely near-duplicate observations within an entity
flags dormant entities (60+ days untouched) as archive/compress candidates
flags long-dismissed reminders (90+ days) as removal candidates
rotates its own
audit_log(90+ days) — the only thing it actually deletesskips entities untouched since the last run, so repeat runs are cheap
Findings land in a per-section "Groom Report" entity for you (or Claude) to act on.
Requirements
Node.js with built-in SQLite support (
node:sqlite) — Node 22+.Docker (optional, recommended for deployment).
There are no native dependencies — storage is the built-in node:sqlite module, so there's nothing to compile.
Quick start (Docker)
git clone https://github.com/dcazman/Claude-Atlas-MCP.git
cd Claude-Atlas-MCP
cp .env.example .env # set a token
docker compose up -d --buildThe server listens on port 7784. Data persists to ./data (a single SQLite file) via the mounted volume.
Quick start (bare Node)
Requires Node 22+ (for built-in node:sqlite).
npm install
cp .env.example .env # set a token
npm start # or: node src/server.jsConnecting Claude
Atlas speaks MCP over streamable HTTP at POST /atlas-mcp. Add it as a connector using the server's URL with your token:
https://<your-host>/atlas-mcp?token=<your-secret>The token is the secret half of an ATLAS_TOKEN caller:secret pair (see below). You can also pass it as an X-Atlas-Token header or a Bearer token instead of the query string.
There's no section in the URL — every tool takes a section argument (work, personal, or shared), and which one a given conversation should default to is best set in your Claude project's custom instructions (e.g. "Your Atlas section is personal"). A GET /health endpoint is available for liveness checks.
For real use you'll want it behind HTTPS — a reverse proxy or a tunnel (Cloudflare Tunnel, Tailscale, nginx, etc.) in front of the container. The token is the only auth, so do not expose the port publicly without TLS.
Once connected, a good habit is to have Claude call get_landscape at the start of each conversation and keep entries updated (upsert_entity / add_observation / log_event / remove_observation) as things change — you can encode that in the connector's instructions field or your project's custom instructions.
Securing it
Atlas's built-in auth is a single shared token — fine behind a private network or tunnel, but thin if you're exposing it to the internet. For real access control, put a dedicated auth gateway in front rather than hardening this server yourself.
mcp-auth-proxy is a drop-in OAuth 2.1 / OIDC gateway for MCP servers — no code changes to Atlas:
Authenticate against your own IdP (Google, GitHub, Okta, Auth0, Azure AD, Keycloak, any OIDC provider), with an optional password.
Authorize users by exact match or glob (e.g.
*@yourcompany.com).Terminates TLS and proxies HTTP transports through as-is, verified across Claude, Claude Code, ChatGPT, Copilot, and Cursor.
Roughly, you'd point it at Atlas's HTTP endpoint:
./mcp-auth-proxy \
--external-url https://<your-domain> \
--tls-accept-tos \
-- http://localhost:7784/atlas-mcpSee its documentation for IdP setup and configuration. (Not affiliated — just a clean fit for self-hosted MCP servers like this one.)
Configuration
Set via .env (see .env.example):
Variable | Purpose |
| Required. One or more |
| Listen port (defaults to |
| Path to the SQLite file (defaults to |
Security
See SECURITY.md for the threat model, deployment hardening notes, and how to report a vulnerability.
License
MIT — see LICENSE.
This server cannot be installed
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-qualityDmaintenanceAn MCP server that gives Claude persistent memory by storing conversation context, entities, and enabling semantic search across sessions.Last updated331MIT
- Alicense-qualityCmaintenanceAn MCP server that gives Claude Code cross-session memory persisted to a plain .claude-memory.md file in your repo.Last updatedMIT
- Alicense-qualityDmaintenancePersistent memory MCP server for Claude Code that captures and recalls project context across sessions, eliminating the need to re-explain architecture and decisions daily.Last updated231MIT
- Alicense-qualityCmaintenanceLong-term memory MCP server for Claude Code with SQLite persistence, encryption, semantic search, and automatic memory linking.Last updated351MIT
Related MCP Connectors
Cloud-hosted MCP server for durable AI memory
One memory, every AI: Claude, ChatGPT, Perplexity, Gemini, Cursor, OpenClaw, Hermes, any MCP client.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
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/dcazman/Claude-Atlas-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server