ainative-memory-mcp
Enhanced MCP knowledge graph memory server with cloud persistence and semantic search, acting as a drop-in replacement for the standard memory server.
README
ainative-memory-mcp
Enhanced MCP knowledge graph memory server with cloud persistence and semantic search. Drop-in replacement for @modelcontextprotocol/server-memory.
Why this instead of server-memory?
| Feature | server-memory | ainative-memory-mcp |
|---|---|---|
| Storage | Local JSONL file | ZeroDB cloud |
| Persistence | Lost on machine wipe | Survives forever |
| Cross-device | No | Yes (same API key = same graph) |
| Semantic search | No (text match only) | Yes (vector similarity) |
| Setup | Manual file path | Auto-provisions on first run |
| Sharing | Copy files around | Share API key |
Quick Start
Claude Desktop / Claude Code
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "ainative-memory-mcp"],
"env": {
"ZERODB_API_KEY": "ak_your_key"
}
}
}
}
No API key? Just omit it — a free ZeroDB instance is auto-provisioned on first run.
Cursor / Windsurf / VS Code
Same config in your .mcp.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": ["-y", "ainative-memory-mcp"],
"env": {
"ZERODB_API_KEY": "ak_your_key"
}
}
}
}
Get an API Key
npx zerodb-cli init
Or sign up at ainative.studio.
Tools (10)
All 9 original server-memory tools plus semantic search:
Original Tools
| Tool | Description |
|---|---|
create_entities |
Create new entities with name, type, and observations |
create_relations |
Create directed relations between entities |
add_observations |
Add observations to existing entities |
delete_entities |
Delete entities and their cascading relations |
delete_observations |
Remove specific observations from entities |
delete_relations |
Delete specific relations |
read_graph |
Read the entire knowledge graph |
search_nodes |
Search by text match (name, type, observations) |
open_nodes |
Fetch specific entities by name with their relations |
New Tool
| Tool | Description |
|---|---|
search_nodes_semantic |
Vector similarity search — find entities by meaning, not just exact text |
Semantic Search Example
The original search_nodes only finds exact text matches. search_nodes_semantic understands meaning:
search_nodes("ML frameworks") -> might find nothing
search_nodes_semantic("ML frameworks") -> finds "PyTorch", "TensorFlow", "JAX"
Environment Variables
| Variable | Required | Description |
|---|---|---|
ZERODB_API_KEY |
No* | ZeroDB API key (auto-provisions if missing) |
ZERODB_PROJECT_ID |
No | ZeroDB project ID |
ZERODB_API_URL |
No | API URL (default: https://api.ainative.studio) |
*If no credentials are provided, a free instance is automatically provisioned on first run.
Auto-Provisioning
On first run without credentials:
- A free ZeroDB instance is provisioned automatically
- Credentials are saved to
.mcp.jsonand.envin your project - A claim URL is printed so you can take ownership of the instance
- Everything works immediately — no signup required
How It Works
Instead of writing to a local memory.jsonl file, this server:
- Entities are stored as rows in a ZeroDB NoSQL table (
kg_entities) - Relations are stored in a separate table (
kg_relations) - Vector embeddings are automatically generated for each entity via ZeroMemory, enabling semantic search
- All data persists in the cloud and is accessible from any device with the same API key
Migration from server-memory
- Replace
@modelcontextprotocol/server-memorywithainative-memory-mcpin your MCP config - Add
ZERODB_API_KEYto your env (or let it auto-provision) - Re-create your entities (one-time migration — your old JSONL data stays on disk)
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.