MCP server exposing Z3rno memory operations as tools for Claude Desktop, Cursor, and other MCP clients.
Project description
z3rno-mcp
MCP (Model Context Protocol) server that exposes Z3rno memory operations as tools. Gives any MCP-compatible AI client (Claude Desktop, Cursor, Windsurf, etc.) the ability to store, recall, forget, and audit agent memories.
Tools
| Tool | Description |
|---|---|
z3rno.store |
Store a memory (fact, preference, decision, etc.) |
z3rno.recall |
Semantic search over stored memories |
z3rno.forget |
Soft delete or GDPR-compliant hard delete |
z3rno.audit |
Query the audit log of memory operations |
Installation
# With uv (recommended)
uv pip install z3rno-mcp
# With pip
pip install z3rno-mcp
Configuration
Set environment variables:
| Variable | Required | Default | Description |
|---|---|---|---|
Z3RNO_API_KEY |
Yes | — | Your Z3rno API key |
Z3RNO_BASE_URL |
No | https://api.z3rno.dev |
Z3rno server URL |
Z3RNO_AGENT_ID |
No | — | Default agent ID (can be overridden per-call) |
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"z3rno": {
"command": "z3rno-mcp",
"env": {
"Z3RNO_API_KEY": "z3rno_sk_...",
"Z3RNO_AGENT_ID": "my-agent"
}
}
}
}
If installed via uv, use the full path:
{
"mcpServers": {
"z3rno": {
"command": "uv",
"args": ["run", "z3rno-mcp"],
"env": {
"Z3RNO_API_KEY": "z3rno_sk_...",
"Z3RNO_AGENT_ID": "my-agent"
}
}
}
}
Cursor
Add to your .cursor/mcp.json:
{
"mcpServers": {
"z3rno": {
"command": "z3rno-mcp",
"env": {
"Z3RNO_API_KEY": "z3rno_sk_...",
"Z3RNO_AGENT_ID": "my-agent"
}
}
}
}
Claude Code
claude mcp add z3rno -- z3rno-mcp
Then set environment variables in your shell profile or .env.
For a detailed step-by-step setup, see QUICKSTART.md.
Full documentation: astron-bb4261fd.mintlify.app
Local Development
# Clone and install
git clone https://github.com/the-ai-project-co/z3rno-mcp.git
cd z3rno-mcp
uv sync --dev
# Run directly
Z3RNO_API_KEY=z3rno_sk_test Z3RNO_BASE_URL=http://localhost:8000 uv run z3rno-mcp
# Lint and format
uv run ruff check .
uv run ruff format .
License
Apache-2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file z3rno_mcp-0.2.0.tar.gz.
File metadata
- Download URL: z3rno_mcp-0.2.0.tar.gz
- Upload date:
- Size: 76.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3bdedceb9b3dd3456492a24f18dd1ed3062f01f2c8e7179260e1e5e39bec862
|
|
| MD5 |
e1f8b27cdea9a4f5d39f2e8be49a0471
|
|
| BLAKE2b-256 |
c13b5f407b21c77f3e6465eda8b4094f9391ce10875ced8ef45fb0a9650e929a
|
File details
Details for the file z3rno_mcp-0.2.0-py3-none-any.whl.
File metadata
- Download URL: z3rno_mcp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72ab0962eeb3bbc9ea91fef5bb7e04959407a616099e0d47384b7a7d76420e24
|
|
| MD5 |
c53b9f6c60aa942fdc97ef0bdbe73fe9
|
|
| BLAKE2b-256 |
e6cc93ce09da08ffddc6c99fdd202234e95557062effc3302f1e6ce394f8b35c
|