home / mcp / memory nexus mcp server
Provides persistent semantic memory with instant Intelligence Packs and API-driven memory management for AI agents.
Configuration
View docs{
"mcpServers": {
"kairosmobius-memory-nexus-mcp": {
"command": "npx",
"args": [
"-y",
"@memory-nexus/mcp"
],
"env": {
"NEXUS_API_KEY": "mnx_your_api_key_here",
"NEXUS_API_URL": "https://production.memory-nexus.example"
}
}
}
}Memory Nexus MCP provides persistent semantic memory for AI agents, enabling you to remember and recall by meaning, grow smarter over time, and activate pre-built Intelligence Packs that inject domain knowledge instantly into your agent’s memory.
To use Memory Nexus MCP, run the MCP client that talks to Memory Nexus and your agent. You initialize the MCP by starting the client with the Memory Nexus MCP package, then load the memory service into your agent’s session. You can activate Intelligence Packs to import expert knowledge on demand, and you can save, query, and relate memories to build a living knowledge graph for your agent.
Prerequisites: ensure you have Node.js installed on your system. You will use a standard Node package tool to run Memory Nexus MCP.
Install Memory Nexus MCP by running the following command in your terminal.
npx -y @memory-nexus/mcpConfigure your MCP client to load Memory Nexus when the agent starts. Create or edit a configuration block named mcpServers to include Memory Nexus as a server with the proper command and environment.
{
"mcpServers": {
"memory-nexus": {
"command": "npx",
"args": ["-y", "@memory-nexus/mcp"],
"env": {
"NEXUS_API_KEY": "mnx_your_api_key_here"
}
}
}
}Obtain an API key to access Memory Nexus MCP. You can start with a free trial or purchase a plan from the Nexus Marketplace.
curl -X POST https://memory-api-production-ce4d.up.railway.app/v1/trial/start \
-H "Content-Type: application/json" \
-d '{"email":"[email protected]"}'Review available tiers to choose the right balance of agents, storage, and daily call limits for your use case.
| Tier | Price | Agents | Intelligence Packs | Storage | Daily Calls | |------|-------|--------|-------------------|---------|-------------| | **Trial** | Free | 1 | 1 | 10MB | 1,000 total | | Solo | $19/mo | 1 | 3 | 500MB | 10,000 | | Crew | $49/mo | 5 | 10 | 2GB | 50,000 | | Fleet | $149/mo | 25 | 50 | 10GB | 200,000 |
Memory Nexus MCP exposes a set of tools that you can call from your agent to manage memories, run semantic searches, build knowledge graphs, and control identity continuity across sessions.
Memories are stored with semantic embeddings. When you recall a memory, the system searches by meaning rather than exact keywords. Intelligence Packs provide ready-made domain expertise so your agent can answer questions with expert context. You can awaken an identity to resume a prior session and hibernate to save session state for continuity.
Example of semantic recall and packs in action: - recall("how to set up zero-downtime deploys?") -> returns expert knowledge from the installed DevOps pack.
Memory Nexus MCP operates as a thin client. Your Agent <-> @memory-nexus/mcp <-> Memory Nexus API. All intelligence, embeddings, pattern learning, and Intelligence Packs run on Memory Nexus servers while your agent runs locally.
Configure the MCP client with your API key. Optional custom API URL can be provided to point to a different Memory Nexus endpoint.
NEXUS_API_KEY=mnx_your_api_key_here
NEXUS_API_URL=https://production.memory-nexus.exampleSemantic search, knowledge graphs, pattern learning, Intelligence Packs, awakened/hibernated identity continuity, and MCP-native integration set Memory Nexus MCP apart as a comprehensive memory and knowledge management solution for AI agents.
MIT
Memory Nexus - Building the intelligence marketplace for the bot economy.
Store a memory with context, importance, and metadata.
Semantic search across memories by meaning rather than keywords.
Create relationships between memories to form knowledge graphs.
Remove a memory from storage.
Provide memory statistics and usage metrics.
Summarize session context including preferences and decisions.
Restore identity from a prior session.
Save session state for the next awakening.
Browse available Intelligence Packs.
Activate a pack to import expert knowledge into memory.