zme-mcp
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., "@zme-mcprecall why we chose Supabase"
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.
zme-mcp
Zeug Memory Engine as an MCP server. Hybrid retrieval (vector + lexical, RRF-fused) and a bitemporal knowledge graph over Zeug's collected knowledge — 15k+ chunks of research, notes, articles and transcripts — exposed to any MCP client: Claude, Cursor, Codex, Hermes, and ChatGPT (deep research + company knowledge compatible).
Measured on the Zeug corpus: hybrid R@5 0.800 · MRR 0.562 · source-recall@10 0.900 — +18.1% MRR over vector-only.
Tools
Tool | What it does | Write? |
| One query string → | no |
|
| no |
| Zeug's own notes/analysis/research only — "why did we decide X" | no |
| Causal chain between two knowledge-graph entities | no |
| Facts around one entity, with evidence quotes | no |
| Record a durable note (pitfall, decision, incident). The only write path — backed by a | creates one note |
Related MCP server: engram
Authentication — the zeuglab → ClawPanel auth model (alpha)
This server is the alpha ring of the ecosystem auth design:
Ring | Where | Auth |
alpha | zeuglab ecosystem (this server) | OAuth 2.1 + optional legacy token |
beta | ClawPanel | OAuth only; stores move from memory to Postgres |
prod | ClawPanel multi-tenant | OAuth + per-profile labels, RLS-backed |
OAuth 2.1, self-contained (no external IdP): DCR, PKCE, authorization codes,
refresh tokens, revocation — the full flow ChatGPT performs. /authorize shows a
zeuglab login form; profiles are configured server-side:
ZME_AUTH=oauth
ZME_BASE_URL=https://zme-mcp.fly.dev
ZME_OAUTH_PROFILES='{"alex":{"secret":"…","level":"owner"},
"guest":{"secret":"…","level":"viewer"}}'Profile levels → scopes: owner/operator get zme:read + zme:write;
viewer gets zme:read. The server forces scopes from the profile — client
requests are never trusted. A viewer's tools/list doesn't even contain
remember. In beta the in-memory stores become tables and passphrases become
Supabase sessions; the scope contract stays identical, so alpha clients keep working.
Legacy token mode (ZME_AUTH=token + ZME_MCP_TOKEN) still works in the alpha
ring for stdio-style clients that can't do OAuth; it is a startup error from
ring beta onwards.
Configuration
Variable | Required | Purpose |
| yes | Supabase key for the ZME project. The anon key is enough (SELECT-only + |
| no | Defaults to Zeug's own memory project. Point at another ZME deployment (e.g. a ClawPanel tenant DB) to serve that instead. |
| no | Enables the vector arm of hybrid search. Without it, everything still works in lexical mode (which is the arm that catches exact identifiers). |
| no |
|
| oauth | JSON map of profile name → |
| oauth | Public URL of the server (for OAuth metadata + redirects). |
| no |
|
| token mode | Shared bearer for the HTTP endpoint. |
On macOS, keys are also auto-resolved from the NoxKey keychain (one Touch ID prompt per session) when the env vars are absent.
Install & run — local agents (stdio)
No install needed with uv (any machine with Python):
uvx --from git+https://github.com/Sidarau/zme-mcp zme-mcpor pipx: pipx install git+https://github.com/Sidarau/zme-mcp ·
PyPI (uvx zme-mcp) once the package is published there.
Claude Code — claude mcp add zme -- uvx --from git+https://github.com/Sidarau/zme-mcp zme-mcp
Claude Desktop / Cursor (mcpServers JSON):
{
"zme": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Sidarau/zme-mcp", "zme-mcp"],
"env": { "ZME_SUPABASE_KEY": "…", "NVIDIA_API_KEY": "…" }
}
}Run as a service (HTTP) — for ChatGPT
zme-mcp --http --host 0.0.0.0 --port 8000
# streamable HTTP endpoint: POST /mcp · health: GET /healthzConnect from ChatGPT (OAuth)
Server is live at
https://zme-mcp.fly.dev(this repo shipsDockerfile+fly.toml:flyctl deploy).In ChatGPT: Settings → Security and login → Developer mode → on.
Go to chatgpt.com/plugins → + → enter
https://zme-mcp.fly.dev/mcp.ChatGPT discovers the OAuth metadata, registers itself via DCR, and opens the zeuglab login form — sign in with your profile (
alex+ passphrase). The token it gets back carries your level's scopes.Use it in chat — and in deep research, where the
search/fetchpair makes ZME a citable knowledge source.
Security model
Read path is plain
SELECTthrough PostgREST with whatever key you configure — use the anon key anywhere shared.The only write is
remember, which callszme_remember(): aSECURITY DEFINERfunction whose entire capability is "create one note". No UPDATE, no DELETE, no schema access.The HTTP layer never logs keys; the token is compared, not echoed.
Development
python3 -m venv .venv && .venv/bin/pip install -e .
printf '%s\n' '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"x","version":"0"}}}' | .venv/bin/zme-mcpThis 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-qualityAmaintenanceAI memory engine exposed as an MCP server with structured knowledge capture, entity extraction, and hybrid search for persistent, portable memory across AI tools.Last updated1131MIT
- Alicense-qualityDmaintenanceGives AI persistent personal memory with hybrid search, temporal decay, and knowledge graph. Works with Claude and any MCP client.Last updated816MIT
- Alicense-qualityDmaintenanceLocal-first AI memory layer with hybrid retrieval and brain-inspired namespaces. Enables agents to save, search, and manage memories directly via MCP tools.Last updated4MIT
- AlicenseAqualityAmaintenanceProvides persistent, searchable structured memory management for AI agents, with keyword matching, bidirectional Zettelkasten sync, and six MCP tools.Last updated6MIT
Related MCP Connectors
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
Cross-AI personal memory. Save once in ChatGPT, recall in Claude, Mistral, Grok, or any MCP client.
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/Sidarau/zme-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server