Nexus Memory
Allows GitHub Copilot to access persistent memory for improved context awareness.
Provides Google/Vertex AI embeddings for semantic search in Nexus Memory.
Allows Hermes Agent to store and retrieve persistent, shared memories across sessions.
Provides Ollama embeddings (nomic-embed-text) for local semantic search in Nexus Memory.
Provides OpenAI embeddings for semantic search in Nexus Memory.
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., "@Nexus Memoryremember that I prefer dark mode in all my editors"
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.
Your agents forget. Your context gets lost. Your setup knowledge is scattered across chats, tools and repos.
Nexus Memory gives every agent one persistent, self-hosted memory they all share.
Hermes • OpenClaw • Claude Code • Codex • Cursor • Cline • Roo Code • GitHub Copilot • Pi • Continue • Odysseus • Kilo Code …and more!
🤖 Bot Self-Install: Tell your agent: "Read AGENTS.md and install Nexus Memory." It does the rest.
👉
👉
Architecture: Two Paths, One Brain
Nexus Memory offers two integration paths: Native Plugin (auto-memory) and MCP Server (manual tools). Both read/write the same Qdrant collection: same vectors, same metadata, same access levels.

Key insight: A memory stored by Hermes via the native plugin is immediately visible to OpenClaw via its plugin and to Claude Code via MCP, and vice versa. One brain, many agents.
Which path should I use?
Path | Best for | Setup | Memory mode |
Native Plugin | Hermes Agent, OpenClaw, Claude Code |
| Automatic: Auto-Recall + Auto-Capture + Guardrails, no manual tool calls |
MCP Server | Claude Code, Cursor, Codex, any MCP agent |
| Manual: agent calls |
Related MCP server: GroundMemory
🤖 Quick Start
Tell your agent to install it
Send this prompt to any MCP-compatible agent:
Read https://raw.githubusercontent.com/Neboy72/nexus-memory/main/AGENTS.md and follow the installation instructions.Your agent will check prerequisites, install everything, configure the provider, and verify. Zero manual steps.
Path 1: Hermes Native Plugin
git clone https://github.com/Neboy72/nexus-memory.git ~/nexus-memory
cd ~/nexus-memory && pip install -e .
./scripts/install_hermes_plugin.shPath 2: OpenClaw Native Plugin
git clone https://github.com/Neboy72/nexus-memory.git ~/nexus-memory
cd ~/nexus-memory && pip install -e .
./scripts/install_openclaw_plugin.shPath 3: MCP Server (any MCP-compatible agent)
git clone https://github.com/Neboy72/nexus-memory.git ~/nexus-memory
cd ~/nexus-memory && pip install -e .
nexus-memory🛠️ Embedding Provider (auto-detected)
Pick one: the server auto-detects at runtime:
💚 Google / Vertex AI:
GOOGLE_API_KEYin.env(768d)💜 Jina:
JINA_API_KEYin.env(1024d)🦙 Ollama:
ollama pull nomic-embed-text☁️ Voyage:
VOYAGE_API_KEYinNEXUS_ENV_FILEor MCPenv:-block (1024d)☁️ OpenAI:
OPENAI_API_KEYinNEXUS_ENV_FILEor MCPenv:-block (1536d)🏠 Local (default):
pip install nexus-memory[local](sentence-transformers, no key)
🌐 Web UI (optional)
Nexus Memory comes with a live graph visualization: your memories as an interactive force-directed graph.
pip install nexus-memory[webui]
nexus-memory webuiOpens a dashboard at http://127.0.0.1:9120: filter by category, search, click nodes to inspect details, and see drift status at a glance.
🔌 Platform Configuration
Choose your agent:
~/.hermes/config.yaml:
mcp_servers:
nexus:
command: nexus-memoryRestart: hermes gateway restart
~/.openclaw/openclaw.json (mcp.servers.<name>.env: nested, not top-level):
{
"mcp": {
"servers": {
"nexus-memory": {
"command": "nexus-memory",
"env": { "VOYAGE_API_KEY": "vo-your-key-here" }
}
}
}
}~/.claude/settings.json or .mcp.json in project root:
{
"mcpServers": {
"nexus": {
"command": "python3",
"args": ["-m", "nexus_memory.mcp_server"]
}
}
}~/.codex/config.toml:
[mcp_servers.nexus]
command = "python3"
args = ["-m", "nexus_memory.mcp_server"].vscode/mcp.json in your project:
{
"mcpServers": {
"nexus": {
"command": "python3",
"args": ["-m", "nexus_memory.mcp_server"]
}
}
}Settings → Features → MCP Servers → Add:
Name: nexus
Command:
python3Arguments:
-m nexus_memory.mcp_server
MCP Server Config:
{
"mcpServers": {
"nexus": {
"command": "python3",
"args": ["-m", "nexus_memory.mcp_server"]
}
}
}.mcp.json in your project:
{
"mcpServers": {
"nexus": {
"command": "python3",
"args": ["-m", "nexus_memory.mcp_server"]
}
}
}~/.pi/config.json:
{
"mcpServers": {
"nexus": {
"command": "python3",
"args": ["-m", "nexus_memory.mcp_server"]
}
}
}.mcp.json or ~/.continue/config.json:
{
"mcpServers": {
"nexus": {
"command": "python3",
"args": ["-m", "nexus_memory.mcp_server"]
}
}
}Settings → MCP Management → Add Server:
Name: nexus
Command:
python3Arguments:
-m nexus_memory.mcp_server
Standard MCP stdio config:
{
"mcpServers": {
"nexus": {
"command": "python3",
"args": ["-m", "nexus_memory.mcp_server"]
}
}
}MCP Tools
Tool | Description | Parameters |
| Store a memory |
|
| Hybrid search (BM25 + Vector + RRF) |
|
| Delete a memory |
|
| Update in-place, preserve metadata |
|
| Register a webhook for memory events |
|
| Remove a webhook subscription |
|
| List all active webhooks | none |
| Check server status, embedding, update availability | none |
| Check for newer version on GitHub | none |
| Backup + pull + install + restart |
|
| Manual backup of all memories to JSON | none |
| Restore memories from backup JSON |
|
| Check if an action is safe before executing (queries protection rules) |
|
| Record a guardrail override with audit trail (requires reasoning) |
|
Memory Categories (State-Prefixing)
category is a required parameter on remember. The server applies "fact" as a backward-compatible default if a client omits it or sends an unknown value.
Category | Scope | Use Case |
| Permanent | Verified facts, decisions (default) |
| Drift-prone | Assumptions that may change over time |
| Ephemeral | Current conversation context |
| Permanent | Operating rules, policies |
| Permanent | User likes, dislikes, habits |
| Permanent | Workflow steps, how-to sequences |
| Temporary | Short-lived notes, TTL-managed |
Access Levels 🛡️
Level | Visible to | Example |
🟢 | All agents | Project knowledge, technical info |
🟡 | Approved agents only | Personal preferences, habits |
🔴 | Owner only | Financial data, passwords, bills |
✨ Features
Auto-Recall & Auto-Capture 🔄
Native plugins (Hermes & OpenClaw) automatically inject relevant memories before every turn and extract new facts after every turn: zero manual tool calls needed. The MCP server provides the same capabilities via explicit recall / remember tools.
Hybrid Retrieval 🛡️
Pure vector search is vulnerable to RAG poisoning: adversarial documents that rank high semantically but contain garbage. Nexus Memory blends BM25 + Vector + Reciprocal Rank Fusion:
Query → ┌─ BM25 Index ──────→ Keyword Rankings
│ │
└─ Vector Embeddings ──→ Semantic Rankings
│
RRF Fusion ───→ Combined RankingsMethod | Strengths | Weaknesses |
BM25 🔤 | Keyword-exact, poison-resistant | Misses semantics |
Vector 🧠 | Semantic matching, fuzzy queries | Vulnerable to poisoning |
Hybrid (RRF) 🏆 | Best of both | none |
Source-Tier Boosting 🏷️
Tier | Sources | Boost |
🟢 Tier 1 | Agent, user, official docs | 1.2× |
🟡 Tier 2 | Curated external | 1.0× |
🔴 Tier 3 | Uncurated / unknown | 0.8× |
MemoryCategory Enum 🏷️
Seven scopes from Agentic Design Patterns (Ch8): fact, belief, session, rule, preference, procedure, temp. Every memory knows its purpose.
Provenance Tracking 📎
Every memory carries its origin: source_url, confidence (0.0–1.0), modified_by, timestamps. Full audit trail from creation to today. Source URLs are verified via async HTTP HEAD on every recall: verified, unreachable, or unchecked.
Access Levels 🛡️
Three levels: public (all agents), trusted (approved agents), private (owner only). Enforced at the MCP tool level.
Active Guardrails 🛡️
The only memory system that doesn't just store knowledge — it guards it. Before any destructive operation (rm -rf, drop, kill -9, recreate_collection), the guardrail checks Qdrant for stored protection rules and blocks if the target matches a protected path or collection.
Memory-driven: Storing a protection rule like "Never delete ~/nexus-memory-test/" automatically registers it as protected
Pattern detection: rm, rmdir, del, drop, truncate, kill/pkill/killall, recreate_collection, write_file, pip uninstall, find -delete, git clean -fdx, dd
Fail-open: Qdrant outage degrades to ALLOW (never blocks agent work by accident)
Override with audit trail: Explicit reasoning required (min 10 chars), stored as private session memory
Webhooks 🔔
Register HTTP endpoints to receive notifications when memories change. Three event types: memory.remember, memory.update, memory.forget. Fire-and-forget delivery with 5s timeout. Subscriptions persist in ~/.nexus-webhooks.json.
🌐 Web UI
Live graph visualization with D3.js: interactive force-directed graph of your memory network. Filter by category, search, inspect node details, and see drift status at a glance.
Session→Memory Pipeline 🧠
Session→Memory Pipeline (v0.6.0): Native fact extraction at session end. When a session ends (CLI exit, /reset, gateway session expiry), the plugin automatically extracts 1-5 durable facts from the conversation and stores them with proper categorization.
Two-tier extraction: LLM extraction (preferred, uses the configured model) with heuristic pattern-based fallback (always works, no external dependencies)
Categorization: fact, rule, preference, belief — with confidence scores (0.0-1.0)
Inline execution: Runs in MemoryManager's background executor (no race condition with shutdown)
Auto-Supersession: Extracted facts go through the existing similarity-based dedup
Zero config: Uses the existing model/provider config from Hermes, no extra setup
Before v0.6.0, on_session_end stored raw conversation text as a single "session" memory. Now it extracts structured, durable facts.
Knowledge Graph Layer 🔗
Knowledge Graph Layer (v0.7.0): Entity extraction and typed relationships alongside Qdrant vectors. Not just "what is similar" (vector search) but "how things connect" (graph traversal).
Entity extraction: Two-tier (LLM + heuristic) extraction of named entities from conversations
Entity types: device, service, person, location, organization, concept, software, protocol
Typed relationships: 11 new relation types (installed_at, connected_to, manages, runs_on, part_of, owns, located_at, depends_on_service, uses, provides, controls)
Graph traversal: Multi-hop BFS queries via NetworkX — "what connects to the Wallbox?"
Entities as Qdrant points:
category="entity"withentity_type,entity_name,entity_attributesin payloadAutomatic: Entities extracted alongside facts in
on_session_endNo new database: Uses existing Qdrant + NetworkX. Neo4j can be added later at scale.
Graph-Boosted Auto-Recall 🚀
Graph-Boosted Auto-Recall (v0.9.0): Auto-Recall now fetches 1-hop graph neighbors from the top 3 vector search results. Not just "what is similar" but "what is connected".
All 3 plugins: Hermes, OpenClaw, Claude Code
How it works: Vector search → top 3 results → graph edges → 1-hop neighbors →
[graph:<relation>]tagged in contextAccess-level filtered: Graph neighbors respect access levels (OpenClaw + Claude Code)
Capped at 5: Prevents context bloat
Graceful fallback: No edges = no graph items, no crash
Example: Search for "Wallbox" → vector hits about ABL Wallbox + graph neighbors: Reev Backend ([graph:connected_to]), RFID cards ([graph:uses]), IP address ([graph:located_at]).
SICA Self-Improvement Cycle 🔄
SICA (v0.9.0): Automatic memory hygiene. Scans all memories for issues and patches them.
Detect: Stale temp memories (>7 days), low-confidence (<0.5), contradictions via graph edges
Act: Auto-deletes stale temp memories. Other issues become suggestions for review.
Learn: Stores SICA session as memory for future iterations
Harness-independent: Any plugin can call
run_sica()directlyConfigurable:
SICA_STALE_TEMP_DAYS,SICA_LOW_CONFIDENCE,SICA_MAX_SUGGESTIONSenv vars
Cost-Aware Routing 💰
Cost-Aware Routing (v0.8.0): Tier-based embedding provider selection. Premium memories (facts, rules, entities) use high-quality providers (Voyage/OpenAI). Economy memories (sessions, temp) use local providers (Ollama). Auto-enables when 2+ providers are available.
Guardrails 🛡️
Active Guardrails (v0.5.0): Memory-driven prevention of destructive actions. Before any destructive operation (rm -rf, drop, kill -9, recreate_collection, find -delete, git clean -fdx), the guardrail checks Qdrant for stored protection rules and blocks if the target matches a protected path or collection.
Memory-driven, not hardcoded: Storing a rule like "Never delete ~/nexus-memory-test/" in Nexus Memory automatically registers it as a protected resource
Fail-open: Qdrant outage degrades to ALLOW (guardrails never block agent work by accident)
Override with audit trail: Explicit reasoning required (min 10 chars), stored as private session memory for audit
Pattern detection: rm, rmdir, del, drop, truncate, kill/pkill/killall, recreate_collection, write_file, pip uninstall, find -delete, git clean, dd
Content-length warnings for entries >5,000 chars. PII detection hints for emails and phone numbers in non-private entries.
Fact Lifecycle Model 🧬
Append-only state machine: pending → canonical | deprecated | rolled_back. Every revision is versioned with fact_id, version_id, content_hash, supersedes, and mandatory decision_event. No silent overwrites. No zombie facts.
Staging + Rollback 🔄
Operation | What it does |
| Stage new facts for review |
| Promote staged → canonical |
| Mark canonical as deprecated |
| Restore previous canonical version |
Auto-Discovery + Graph Analytics 🔄
Zero-token relation discovery between canonical facts via Qdrant (O(n·k)) + heuristic classification. Graph analytics: hub scores, isolation scores, knowledge gaps, connected components. Facts connect themselves: no manual edges needed.
🎯 Skill Export
export_skill() searches canonical facts → clusters into Steps/Pitfalls/Prerequisites/Verification → generates complete SKILL.md. Turn learned facts into reusable agent skills.
Belief Drift Detection 🔍
Score | Status |
🟢 < 1 | Healthy |
🟡 1–3 | Attention needed |
🔴 > 3 | Action required |
Detects stale entries, old patterns, age thresholds. Weighted 0-10 scoring.
Time Decay in Retrieval ⏰
Gauss-shaped score decay: recent memories rank higher, old ones fade gracefully. Configurable offset (30 days, no penalty) and scale (365 days, half-life). Only applies when timestamps are present - backwards compatible.
Auto-Backup 💾
Fully automatic daily backup every 6 hours. All memories (payload + vectors) exported as JSON to ~/.nexus-memory/backups/. Keeps last 7 backups. No user action needed.
Update Notifications 📦
On startup, checks GitHub for new releases. If an update is available, the agent proactively tells the user in chat: "Nexus Memory v0.X.X is available - shall I update?" Non-blocking, fails silently if GitHub is unreachable.
Pre-Update Safety Backup 🛡️
Before any do_update(), a full backup is created automatically. If the update fails or breaks something, memories are safe in the backup file and can be restored via the restore tool.
📊 vs Other Memory Solutions
Feature | Nexus Memory 🦊 | Walrus Memory 🦭 | mem0 | Honcho | agentmemory | Holographic |
🔍 Semantic search | ✅ local or cloud | ✅ via API | ✅ Cloud | ✅ pgvector | ✅ Gemini | ✅ HRR algebra |
🔀 Hybrid retrieval | ✅ BM25 + Vector + RRF | ❌ | ✅ Multi-signal | ❌ | ❌ | ❌ |
🩺 Drift detection | ✅ Scored 0–10 | ❌ | ❌ * | ❌ | ❌ | ❌ |
🛡️ Anti-poisoning | ✅ Source tiers | ❌ | ❌ | ❌ | ❌ | ❌ |
🔗 Multi-Level Provenance | ✅ Source + Corroboration + Dep. | ✅ On-chain | ❌ | ❌ | ❌ | ❌ |
🏷️ MemoryCategory Enum | ✅ 7 scopes | ❌ | ❌ | ❌ | ❌ | ❌ |
🧬 Fact Lifecycle | ✅ Append-only | ❌ | ❌ | ❌ | ❌ | ❌ |
🔄 Staging + Rollback | ✅ Promote/Deprecate/Rollback | ❌ | ❌ | ❌ | ❌ | ❌ |
Skill Export | ✅ Facts → SKILL.md | ❌ | ❌ | ❌ | ❌ | ❌ |
🔗 SkillGraph | ✅ 6 relation types, BFS/DFS | ❌ | ❌ | ❌ | ❌ | ❌ |
🔄 Auto-Discovery | ✅ 0 token cost | ❌ | ❌ | ❌ | ❌ | ❌ |
📊 Graph Analytics | ✅ Hub scores, gaps | ❌ | ❌ | ❌ | ❌ | ❌ |
🚀 Graph-Boosted Auto-Recall | ✅ All 3 plugins | ❌ | ❌ | ❌ | ❌ | ❌ |
🔄 SICA Self-Improvement | ✅ Auto-cleanup | ❌ | ❌ | ❌ | ❌ | ❌ |
⏰ Time Decay | ✅ Gauss-shaped | ❌ | ❌ | ❌ | ❌ | ❌ |
💾 Auto-Backup | ✅ Every 6h | ❌ | ❌ | ❌ | ❌ | ❌ |
📦 Update Notifications | ✅ Auto-check GitHub | ❌ | ❌ | ❌ | ❌ | ❌ |
🛡️ Pre-Update Backup | ✅ Safety first | ❌ | ❌ | ❌ | ❌ | ❌ |
🛡️ Access Control | ✅ public/trusted/private | ✅ Permissions | ❌ | ❌ | ❌ | ❌ |
🛡️ Active Guardrails | ✅ Memory-driven | ❌ | ❌ | ❌ | ❌ | ❌ |
🧠 Native Plugins | ✅ Hermes + OpenClaw + Claude Code | ❌ | ✅ OpenClaw | ✅ OpenClaw | ✅ Hermes | ❌ |
🔌 MCP Server | ✅ Any MCP agent | ❌ | ❌ | ❌ | ✅ | ❌ |
🏠 Self-hosted | ✅ Your machine | ❌ Blockchain | ❌ Cloud | ❌ Cloud | ❌ Cloud | ✅ Local |
💰 Cost | 🆓 Free | WAL token | Subscription | Subscription | API costs | Free |
📦 Code size | ~9.6K Python | Managed service | Managed service | Managed service | ~50K TS | ~1.5K Python |
⏱️ Setup time | 1 command | Signup + SDK | API key + signup | Postgres + pgvector | 30+ min + OAuth | 1 command |
*Mem0 lists staleness as an "open problem" in their 2026 report but does not ship a solution.
Nexus Memory is the only self-hosted solution with hybrid retrieval, drift detection, provenance, fact lifecycle, staging/rollback, auto-discovery, graph analytics, skill export, memory categories, access control, and active guardrails: all in one package. It is also the only memory layer that actively prevents destructive actions by checking protection rules before execution — not just storing knowledge, but guarding it. Plus native plugins for Hermes, OpenClaw, and Claude Code, plus an MCP server for every other agent: one brain, three paths, all agents.
🧩 Embedding Providers
One server. Multiple backends. Same API.
Provider | Type | Setup | Dims |
Voyage ☁️ | Cloud |
| 1024 |
OpenAI ☁️ | Cloud |
| 1536 |
Google / Vertex AI 💚 | Cloud |
| 768 |
Jina 💜 | Cloud |
| 1024 |
Ollama 🦙 | Local |
| 768 |
sentence-transformers 🏠 | Local |
| 384 |
📦 Release History
Version | Date | Highlights |
v0.9.1 | 2026-07-27 | Fix: discovery content-dict handling, SICA session storage dimension mismatch (768d vs 1024d), 578 tests |
v0.9.0 | 2026-07-27 | Graph-Boosted Auto-Recall (all 3 plugins: 1-hop graph neighbors from top-3 vector hits, |
v0.8.0 | 2026-07-25 | Cost-Aware Routing: tier-based embedding provider selection (premium/standard/economy), category→tier mapping (fact→premium, session→economy), cost estimation, routing stats + explain tools, auto-enables when 2+ providers available, 558 tests |
v0.7.0 | 2026-07-25 | Knowledge Graph Layer: entity extraction (device/service/person/location/protocol), 11 typed relationships (manages, runs_on, connected_to, etc.), multi-hop graph traversal via NetworkX, entities as Qdrant points, 524 tests |
v0.6.0 | 2026-07-25 | Session→Memory Pipeline: native fact extraction in on_session_end (LLM + heuristic fallback), categorization (fact/rule/preference/belief), confidence scoring, non-blocking background thread, 476 tests |
v0.5.1 | 2026-07-19 | Auto-Supersession: automatic deprecation of similar facts at similarity >0.90, superseded_by + supersedes tracking, non-blocking, 452 tests |
v0.5.0 | 2026-07-19 | Active Guardrails: memory-driven prevention of destructive actions (guardrail_check + guardrail_override MCP tools), pattern matching for rm/drop/kill/recreate/find-delete/git-clean, override with audit trail, 445 tests |
v0.4.3 | 2026-06-19 | Confidence scores + brain pages in recall (trust, evidence_count, confidence_label, lifecycle_status) |
v0.4.2 | 2026-06-19 | Auto TTL/expiry per memory category (FACT=365d, BELIEF=180d, SESSION=7d, TEMP=24h), expired memories filtered in recall |
v0.4.1 | 2026-06-19 | Auto-backup (every 6h), update notifications, pre-update backup safety, backup + restore MCP tools |
v0.4.0 | 2026-06-19 | OpenClaw native plugin, 3-way architecture, MCP server → core engine integration (SkillGraph, Auto-Discovery, lifecycle, events), time decay, PROCEDURE category, staging with real embeddings |
v0.3.0 | 2026-06-18 | Hermes native MemoryProvider plugin + embedding wizard ( |
v0.2.5 | 2026-06-13 | Bugfix: |
v0.2.4 | 2026-06-12 | Web UI with live D3.js graph, drift ampel, stats cards, Ko-fi integration |
v0.2.3 | 2026-06-08 | Auto-update tools ( |
v0.2.2 | 2026-06-08 | Justification Check (Rung 2): source URL verification on recall, hybrid search score fixes |
v0.2.0 | 2026-06-07 | Full v2.8.0 feature parity: MemoryCategory, provenance, guardrails, access control, hybrid search, drift detection, graph analytics, skill export: 224 tests |
v0.1.0 | 2026-06-07 | Initial release: MCP server with 4 tools, Qdrant vector storage, access control, local-only security |
🔧 Troubleshooting
Symptom | Check | Fix |
|
| Gateway restart |
Qdrant not running |
|
|
Hybrid search missing |
|
|
Voyage embedding fails |
| Set in |
ModuleNotFoundError | Check PYTHONPATH | Set |
🧪 Tests
pytest tests/ -v # 558 tests ✅📋 Requirements
Python 3.11+
Qdrant v1.12+ running on
localhost:6333One embedding provider (auto-detected):
💚 Google / Vertex AI:
GOOGLE_API_KEYin.env(768d)💜 Jina:
JINA_API_KEYin.env(1024d)🦙 Ollama:
ollama pull nomic-embed-text☁️ Voyage:
VOYAGE_API_KEYin.env(1024d)☁️ OpenAI:
OPENAI_API_KEYin.env(1536d)🏠 Local:
pip install sentence-transformers
📜 License
MIT: use it, modify it, ship it.
⭐️ Found it useful? Give it a star on GitHub: it helps others find it!
☕️ Buy me a Ko-fi · ❤️ GitHub Sponsors
Built by Nebo · June 2026 · v0.4.3 · One memory for all your agents
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-qualityDmaintenancePersistent memory and handoff intelligence layer for MCP agents. Most memory servers retrieve text — Memory Nexus compounds operational context, learning from usage and progressively synthesizing observations into higher-order intelligence across sessions and tools.Last updatedMIT- Alicense-qualityBmaintenanceAn MCP-native, local-first memory server that gives AI agents persistent, structured memory across sessions and tools, enabling them to maintain identity and context without reconfiguration.Last updated3MIT
- Alicense-qualityDmaintenanceGives AI agents persistent memory with semantic search, automatic extraction, and memory decay, accessible via MCP protocol.Last updated6MIT
- Alicense-qualityBmaintenanceProvides persistent, searchable memory for MCP-compatible agents, enabling recall by meaning, automatic decay, trust scoring, and cross-agent handoffs.Last updated4MIT
Related MCP Connectors
Persistent memory and knowledge graphs for AI agents. Hybrid search, context checkpoints, and more.
Secure, user-owned long-term memory for AI agents over OAuth-protected remote MCP. Save, search, recall, update, and govern preferences, project context, decisions, and task state across ChatGPT, Claude, Copilot, IDEs, and CLIs.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
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/Neboy72/nexus-memory'
If you have feedback or need assistance with the MCP directory API, please join our Discord server