Back to Directory/Developer Tools

io.github.KairosMobius/memory-nexus-mcp

Persistent semantic memory for AI agents with knowledge graphs and Intelligence Packs.

Developer ToolsJavaScriptv1.0.0

Memory Nexus MCP

Persistent semantic memory for AI agents. Remember everything, recall by meaning, grow smarter over time.

The only memory system with pre-built Intelligence Packs (domain expertise you can activate instantly).

Install

One command. Works with Claude Code, Cursor, Windsurf, or any MCP-compatible client.

bash
npx -y @memory-nexus/mcp

Claude Code / Cursor / Windsurf

Add to your .mcp.json:

json
{
  "mcpServers": {
    "memory-nexus": {
      "command": "npx",
      "args": ["-y", "@memory-nexus/mcp"],
      "env": {
        "NEXUS_API_KEY": "mnx_your_api_key_here"
      }
    }
  }
}

Get an API Key

Free trial - 7 days, 1,000 calls, no credit card:

bash
curl -X POST https://memory-api-production-ce4d.up.railway.app/v1/trial/start \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com"}'

Or purchase at the Nexus Marketplace:

TierPriceAgentsIntelligence PacksStorageDaily Calls
TrialFree1110MB1,000 total
Solo$19/mo13500MB10,000
Crew$49/mo5102GB50,000
Fleet$149/mo255010GB200,000

Tools

Core Memory

ToolDescription
rememberStore a memory with context, importance, and metadata
recallSemantic search across all memories (by meaning, not keywords)
connectCreate relationships between memories (build knowledge graphs)
forgetRemove a memory
statsMemory statistics
contextSession context summary (preferences, decisions, patterns)

Agent Self-Continuity

ToolDescription
awakenRestore identity from previous sessions (call at session start)
hibernateSave session state for next awakening (call at session end)

Intelligence Packs

ToolDescription
list_hatsBrowse available Intelligence Packs
wear_hatActivate a pack (imports expert knowledge into your memory)

How It Works

Remember stores memories with semantic embeddings. Recall finds them by meaning.

text
Session 1:  remember("Diana prefers bold solutions over phased approaches")
Session 47: recall("how does Diana like things done?")
            -> "Diana prefers bold solutions over phased approaches" (92% match)

Intelligence Packs give your agent instant domain expertise:

text
list_hats()    -> DevOps Expert (103 memories), TCM Specialist (200+ memories), ...
wear_hat("devops-expert")
recall("how to set up zero-downtime deploys?")
  -> Expert knowledge from 103 curated DevOps memories

Awaken/Hibernate gives your agent identity continuity:

text
// Start of session
awaken()  -> "I remember. Session 47. I was refactoring the auth module."

// End of session
hibernate({ working_on: "auth refactor", learnings: "JWT refresh tokens need..." })

Architecture

This MCP server is a thin client. All intelligence lives on our servers:

text
Your Agent  <->  @memory-nexus/mcp  <->  Memory Nexus API (Railway)
                 (thin MCP client)      (semantic engine, knowledge graphs,
                                         pattern learning, Intelligence Packs)

Your data is isolated per API key. Multi-tenant, encrypted at rest.

Environment Variables

VariableRequiredDescription
NEXUS_API_KEYYesYour API key (starts with mnx_)
NEXUS_API_URLNoCustom API URL (default: production)

What Makes This Different

FeatureMemory NexusMem0claude-memOthers
Semantic searchYesYesYesVaries
Knowledge graphsYesNoNoNo
Pattern learningYesNoNoNo
Intelligence PacksYesNoNoNo
Awaken/HibernateYesNoNoNo
Bot commerceYesNoNoNo
MCP nativeYesYes (pip)Yes (hooks)Varies

License

MIT

Built by

Memory Nexus - Building the intelligence marketplace for the bot economy.

Learn More