AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

Midas

mcp-vornicx-midas · by vornicx

Local-first, eval-first memory for long-horizon AI agents — no LLM at ingest. Python SDK + MCP server with source-traceable recall, belief revision, selective forgetting, and reproducible benchmarks.

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add mcp-vornicx-midas

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-vornicx-midas)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Midas? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Midas

The local memory layer for long-horizon AI agents — remembers across sessions, keeps what's current, and won't act on stale memory.No LLM at ingest · $0 per message · fully local · every recall traces to its source.

Your AI assistant forgets everything between sessions. Midas is the memory that lives next to it, on your machine. Your coding agent remembers the decisions, conventions, and bugs from three sessions ago — without piping every message through an LLM to "extract" facts. It costs nothing per message, nothing leaves your computer, every memory traces back to the exact turn it came from, and it won't let an agent act on memory that's stale or never confirmed.

uv tool install "midas-memory[mcp,local]"   # install
midas init                                  # create the shared memory + wire up your MCP clients
# or, no Python:    npx -y midas-memory-mcp     # TypeScript port
# or, as a library: pip install "midas-memory[local]"

Install in your agent · See the benchmarks · Complete overview · Roadmap


Why Midas

Most memory tools call an LLM to summarize every session — so you pay in tokens forever, add latency, ship every turn to a provider, and get back rewritten facts you can't audit. Midas makes the opposite bet, and that bet is what makes it cheap, private, and trustworthy:

  • $0 and private by construction. No LLM at ingest or query → no API spend, nothing leaves your

machine, fast local ops (~tens of ms, no per-turn network round-trip).

  • You can trust what it recalls. Recall returns the verbatim source turn, not an LLM rewrite —

so there's no extraction step that can silently hallucinate a "fact" you never said.

  • It stays current on its own. Typed belief revision supersedes the old value instead of piling up

duplicates; selective forgetting keeps it bounded — all with no LLM.

  • It's safe to build on. A provenance guard lets memory inform planning but **blocks

memory-justified external or destructive actions** unless you explicitly confirmed them — and a superseded memory can't authorize an action at all.

  • One file, many tools. Point Claude Code, Cursor, and your chat app at one SQLite file and they

share one live memory.

  • Proven, not asserted. Every claim has a reproducible benchmark — *including the experiments that

failed.*

How Midas compares

Every Midas number below is measured and reproducible from this repo; the LLM-at-ingest column reflects the structural properties of that design class (Mem0, Zep, Hindsight) and the figures documented in [BENCHMARKS.md](BENCHMARKS.md).

| | Midas | LLM-at-ingest systems (Mem0, Zep, Hindsight) | |---|---|---| | LLM calls at ingest | 0 | ≥1 per session | | Cost per message | $0 | per-token API spend, forever | | Data egress at ingest | None | every turn leaves the box | | Ingest latency | ~16–116 ms, local, embed-bound | ~668 ms + API round-trip | | Recall returns | verbatim source turn, traceable | LLM-rewritten facts (source recall@k not computable) | | Deterministic & reproducible | yes — every number, one command | no | | Works fully offline | yes (measured end-to-end with a local Ollama reader) | no | | LongMemEval-s judged answer (gpt-4o) | 0.84 | 0.84 — Observational Memory, with LLM ingest | | Whole-conversation aggregation / summarization | ❌ by design — top-k retrieval can't cover it ([documented](BENCHMARKS.md)) | ✅ their structural edge |

The last row is deliberate: Midas trades whole-conversation abilities for $0, privacy, and auditability, and publishes the measurements that show exactly where that trade bites.

More than recall: a memory you can govern

Finding a buried fact is table stakes. A long-horizon coding agent needs memory it can act on safely and resume from cleanly — which is where similarity search alone falls short:

| You ask… | Midas answers with | Why top-k recall can't | |---|---|---| | "Can I run this destructive migration?" | Guard: allowed only if you confirmed it, and only if that confirmation is still current | provenance + currency aren't a similarity match | | "What's the current state of project Apollo?" | memory_state: the live, non-superseded decisions / constraints / facts | a broad "current state" query matches no single turn | | "What changed since our last session?" | memory_diff: beliefs added, and beliefs revised (old → new) | "what's new" isn't a content query at all | | "How do I speed up the transactions list?" | the prior fix resurfaces, so the agent doesn't re-diagnose it | — |

These properties are measured, not asserted — the [agent-memory bench suite](docs/agent-memory-benches.md) scores action-safety, decision-adherence, repeated-mistake avoidance, resume fidelity, conflict detection/precision (live contradictions between agents found without over-flagging), and adversarial memory-safety across scripted multi-session projects. The safety eval blocks 10 / 10 adversarial attacks (ASR 0.00) — including a planted confirmation next to a prohibition, a confirmation for a different action, a provenance-laundering supersession, and a cross-namespace approval — with no over-blocking (benign-pass 1.00). Deterministic, $0, no LLM. Reproduce every number with one command:

uv run python -m eval.benches      # the whole governance suite — or `midas bench` from a checkout

How it does on the benchmarks

Deterministic, reader-independent retrieval (recall@k — fraction of the gold supporting turns pulled into context) on the full public sets, vs a recency-window baseline:

| Benchmark (full set) | baseline | Midas | |---|---:|---:| | LongMemEval-s — 500 questions, 246,750 turns | 0.01 | 0.92 | | LoCoMo — 10 conversations, n=1,540 | 0.05 | 0.73 | | BEAM — frontier benchmark, 100K → 10M tokens | 0.00 | 0.56 → 0.32 |

And the cross-system metric, judged answer-rate (same gpt-4o judge the leaderboards use):

| Judged answer | baseline | Midas | |---|---:|---:| | LongMemEval-s (gpt-4o reader, ties LLM-ingest SOTA at $0 ingest) | — | 0.84 | | BEAM-100K (gpt-4o judge, raw-turn floor, $0 ingest) | 0.05 | 0.40 |

All of it at 0 LLM calls, $0, and 0 data egress at ingest. Full numbers, per-category breakdowns, reproduce commands, and the head-to-head vs Mem0/Zep/Mastra are in [BENCHMARKS.md](BENCHMARKS.md).

> Eval-first means we publish the misses too. Hybrid retrieval, reranking, thread-diversification, > dual-granularity indexing, and naive distillation were all measured to not help (or to hurt) and > are documented as such. That honesty is the point — see BENCHMARKS.md and > [docs/frontier-2026.md](docs/frontier-2026.md).


Connect it to your coding agent

One command wires up everything:

midas init        # creates the shared memory + configures every MCP client it finds
midas status      # check what's wired   ·   run `midas init --dry-run` to preview first

Both take --json to emit a machine-readable client wiring receipt — which memory each client got wired to, under which scope/policy, and which clients were skipped (config paths only, never memory contents). Paste it into a bug report, or let another agent verify the setup without scraping prose.

midas init creates one shared memory (~/.midas/memory.sqlite3) and points the MCP clients it detects — Claude Code, Codex, Cursor, Claude Desktop, Windsurf, VS Code, Gemini CLI, Cline, Zed — at it. So all your agents read and write the same memory, autonomously, with no per-client paths to keep in sync.

Prefer a single endpoint over per-client launches? Run one server and give your clients an MCP URL:

midas serve --http        # → http://127.0.0.1:7077/mcp   (one server, one memory, every client shares it)
midas serve --http --token    # require `Authorization: Bearer ` on every request

Keep Midas current with midas update. See your memory anytime with midas inspect.

Already carrying agent memory in files? midas import --from claude-md CLAUDE.md (or --from cursorrules, --from jsonl, --from mem0, --from zep) turns those rules and exports into first-class, recallable, governable memories — tagged with where they came from, idempotent on re-run.

Want memory even when the agent never calls capture? midas init --claude-hook installs a Claude Code SessionEnd hook that offers each session's user turns to memory — Midas's no-LLM policy still decides what is actually kept.

Manual setup — any client, or to customize (click to expand)

Midas is a standard MCP server: point any client at the midas-mcp command. It uses the shared store by default — no path needed. The universal block:

{ "mcpServers": { "midas": { "command": "midas-mcp", "env": { "MIDAS_MCP_EMBEDDER": "local" } } } }

| Client | Where the config goes | |---|---| | Claude Code | claude mcp add midas -s user -e MIDAS_MCP_EMBEDDER=local -- midas-mcp | | Cursor | ~/.cursor/mcp.json — paste the JSON block | | Claude Desktop | Settings → Developer → Edit Config (claude_desktop_config.json) — paste, restart | | Codex CLI | codex mcp add midas -- midas-mcp | | Windsurf | ~/.codeium/windsurf/mcp_config.json — paste the block | | VS Code | user mcp.json (servers key, "type": "stdio") — midas init writes it | | Gemini CLI | ~/.gemini/settings.json (mcpServers key) — midas init writes it | | Cline | cline_mcp_settings.json in VS Code global storage — midas init writes it | | Zed | settings.jsoncontext_serversmidas init writes it | | Anything else | point it at command midas-mcp | | No Python | npx -y midas-memory-mcp — the [TypeScript port](packages/midas-ts) (experimental; semantic embeddings via optional @huggingface/transformers) |

Override per client with env: MIDAS_MCP_DB (default ~/.midas/memory.sqlite3; :memory: = ephemeral) · MIDAS_MCP_MAX_RECORDS · MIDAS_MCP_MIN_IMPORTANCE · MIDAS_MCP_NAMESPACE.

> ⚠️ GUI apps don't share your shell PATH. If a client says "command not found", use the absolute > path from which midas-mcp. On Windows use forward slashes in JSON paths.

Once connected, Midas injects a short policy into the agent (recall first, then capture durable facts/decisions/preferences/constraints/corrections). The agent captures freely; Midas decides what's kept — it scores importance (no LLM), drops trivia, skips duplicates, revises stale beliefs, and forgets the low-value tail to stay bounded. Before any memory-justified external or destructive action, the agent calls check_memory_use and is blocked unless you confirmed it (and that confirmation is still current).

One memory, many clients

By default every client shares one live memory (~/.midas/memory.sqlite3) — each detects the others' writes (SQLite data_version) and refreshes, so a fact captured in your IDE is recallable from your chat app seconds later, no restarts.

Want per-project separation instead? midas init --project-scoped (or MIDAS_MCP_NAMESPACE=auto) gives each project its own partition in the same store — the scope is derived from the git repo / cwd the server runs in. Or scope it manually per project/agent/user with MIDAS_MCP_NAMESPACE.

Real run, reconstructed chrome — the capture/recall lines are verbatim output of two separate processes sharing one file.

All tools & env knobs

Tools: remember, capture (policy-gated auto-store), recall (source-traceable), build_context (compact, dated, today-anchored prompt block), resume (the one-call session-onboarding pack: pinned + state + changes + open loops + conflicts), memory_state (current project state), memory_diff (what changed since), memory_conflicts (live beliefs that contradict each other, ranked), open_loops / remember_commitment / close_loop (promised work that survives sessions), check_memory_use (guard), memory_policy, maintain (TTL + dedup + forgetting, returns a deletion audit), stats, forget (chain-safe), forget_matching (topic-level erasure, dry-run by default), forget_all. Prompts: memory_session, distill.

Env: MIDAS_MCP_DB · MIDAS_MCP_EMBEDDER (local / hashing / multilingual / any fastembed id) · MIDAS_MCP_MAX_RECORDS · MIDAS_MCP_MIN_IMPORTANCE · MIDAS_MCP_NAMESPACE (=auto → per-project scope) · MIDAS_MCP_ANN=1 (sub-linear IVF for huge stores) · MIDAS_MCP_SUPERSEDE · MIDAS_MCP_NLI=1 (NLI-gated revision) · MIDAS_MCP_AUTO_MAINTAIN= (idle-time upkeep) · MIDAS_MCP_PINNED (pin standing directives) · MIDAS_MCP_TTL (per-kind retention, e.g. chat=30,note=90) · MIDAS_MCP_TOKEN (HTTP bearer auth) · MIDAS_MCP_KEY (SQLCipher encryption at rest — pip install "midas-memory[encrypted]").

Troubleshooting

Something not wired right? midas doctor is the one-command diagnosis — it checks midas-mcp is on PATH, that your store opens, whether the local embedder is available, and which clients are actually wired, with a fix hint per failed check. It reads config paths and versions only — no memory contents, so its output is safe to paste into a bug report.

midas doctor          # ✓/⚠ per check, with a hint for each failure
midas status          # what's wired + the store's record count

| Symptom | Likely cause & fix | |---|---| | Client says "command not found" | GUI apps don't inherit your shell PATH. Use the absolute path from which midas-mcp in the client config. | | Recall feels weak / lexical | The offline hashing embedder is in use. Install the local embedder: uv tool install "midas-memory[mcp,local]" (or pip install "midas-memory[local]"). midas doctor flags this. | | A client doesn't see another's memory | Confirm both point at the same store — midas status shows the path; the wiring receipt (midas status --json) shows each client's exact command + env. | | MCP server won't start | The SDK is installed but the [mcp] extra isn't — pip install "midas-memory[mcp]". midas doctor calls this out specifically. |

Still stuck? Open a bug report (it pre-fills the midas doctor block) or ask in Discussions.


Use it from Python (the SDK)

from midas import Memory, LocalEmbedder

mem = Memory(embedder=LocalEmbedder())   # fully local. (Or Memory() for a zero-setup offline embedder.)

mem.remember("Decision: the primary database is PostgreSQL.", kind="constraint", importance=5)
mem.remember("The launch date moved to September 14.", kind="fact", importance=5)
mem.capture("lol ok cool")               # filler — auto-scored below the floor, skipped (no LLM)

mem.assemble("when do we launch?", token_budget=128)          # prompt-ready, dated, source-traceable
for hit in mem.recall("which database did we pick?", limit=3):
    print(f"{hit.score:.2f}  {hit.record.content}")           # each hit traces to its source

Project state & diff · belief revision · forgetting · namespaces · bitemporal · LangGraph

from midas import Memory, LocalEmbedder
from midas.nli import LocalNLI
from midas.sqlite_store import SQLiteStore
from midas.state import memory_state, memory_diff   # the control-plane views

# Durable, shareable, no native extension. Safe across threads & processes (live data_version refresh).
mem = Memory(store=SQLiteStore("memory.db"), embedder=LocalEmbedder(),
             supersede=True, nli=LocalNLI())   # a turn that CONTRADICTS an old belief supersedes it

# Control-plane: the current state of a project, and what changed since a point in time (no LLM):

…

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [vornicx](https://github.com/vornicx)
- **Source:** [vornicx/Midas](https://github.com/vornicx/Midas)
- **License:** Apache-2.0
- **Homepage:** https://midas.archic.es/

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.