Architectural decision memory for LLM-native workflows β markdown for humans, a graph for agents.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
π§ Early release β actively developed
When you build software with AI assistants over months, the reasoning behind your decisions gets lost. The assistant forgets why you chose one approach, re-suggests options you already rejected, and your design notes drift out of sync with what was actually decided. Mitos is a memory layer for those decisions: it records each decision, the alternatives you ruled out, and how later decisions replace earlier ones β then feeds that history back to your AI assistant in a compact, trustworthy form.
The result: your AI collaborator stays consistent with the calls you've actually made β it stops contradicting a past decision or re-opening a settled question, and your decision record never silently rots.
Under the hood: markdown for humans (decisions.md is the source of truth you can always read and grep), a typed graph for the agents (SQLite + a local Qdrant for semantic recall), and an MCP server so agents check precedent before deciding and record decisions as they make them.
Available on PyPI and the MCP Registry.
If you work with an AI coding agent (Claude Code, Cursor, Gemini CLI, β¦), the easiest path is to let it do the setup. In the project you want mitos in, give your agent:
What your agent will end up doing β the same steps a human follows, all in SETUP.md where you can read them first:
mitos CLI via pipx (from PyPI or this repository);qdrant/qdrant on port 7333, isolated from any Qdrant you already run);mitos set-key) β a Gemini key (required), and an Anthropic key for the conflict-audit layer (strongly recommended); the setup guide tells agents not to handle key values.How much your agent asks along the way is governed by your own agent's settings, not by this prompt.
The same steps by hand β full detail in SETUP.md:
pipx install mitos-adrdocker compose up -d from this repo β mitos runs its own instance on :7333, so it never touches a Qdrant you use for other work.claude mcp add --scope user mitos -- mitos serve. One registration serves every project β see SETUP.md for what it costs, for other harnesses, and for why a leftover per-project .mcp.json entry has to go.mitos init from the project root, then mitos set-key --global <your-Gemini-key> (one key covers everything; get it at https://aistudio.google.com/app/apikey). Gemini is the tested embedding provider today; a multi-provider abstraction is on the roadmap.mitos status . β READY β.mitos status . is the compass throughout: it says exactly what's done, what's missing, and what to do next for that project. With no project named, mitos status answers the other question β what does this machine have β listing every registered project and checking Qdrant.
Every command names its project. There is no default target: mitos init registers the project by name, and from then on each verb takes -p <name>, -p <absolute path>, or -p . from the project root (agents pass the same thing as a project argument). mitos projects lists what's registered. That is what lets one install and one MCP server serve every project on the machine without a call ever landing in the wrong corpus.
Mitos is per-project β each project gets its own decision graph and its own Qdrant collection. Day to day, three verbs carry the loop (as MCP tools for agents, with identical CLI twins):
| Verb | When |
|---|---|
surface_decisions (mitos surface) | Before deciding β is there precedent? Every hit carries the alternatives that were already rejected and why. |
record_decision (mitos record) | The moment something is settled β the decision, the rejected paths, and how it relates to prior decisions (supersedes, amends, β¦). |
query_decisions (mitos query) | Looking something up β by meaning or by exact handle. |
A few properties worth knowing:
decisions.md, human-readable and greppable; the graph and the search index are derived from it and can always be rebuilt (mitos rebuild).mitos check -p .) finds decisions that silently contradict each other, and --staged gates new entries as a pre-commit or CI step β see SETUP.md for the hook, CI and cron recipes, which name their project three different ways.Explore the rest with mitos --help β the help text doubles as the API reference.
Building software through intensive LLM design reviews produces architectural decisions faster than a person can track. One month of that working style produced close to 900 decision records in a single markdown file β no longer greppable, readable, or manageable by hand. Existing ADR tools are built for human teams logging the occasional decision; mitos is built for a solo developer whose AI assistants generate and consume decisions continuously.
If that's your way of working, project size doesn't matter much β the higher the decision volume, the faster mitos moves from comfort to necessity.
-n auto is safe for the offline suite and not for the live tier: the test-collection
sweep is session-scoped, so parallel workers delete each other's Qdrant collections and
the affected tests degrade to skips rather than failures.
The *_live.py suites and golden Layer B make real Gemini and Anthropic API calls
against your own keys, and need Qdrant on :7333. They skip when no key is resolvable,
so a fresh clone runs the fast path by default.
Keys resolve from the environment, a repo-root .env, or ~/.config/mitos/.env β so if
you already use mitos, a test run can pick up your personal key and spend against it.
Opt out explicitly:
The canonical decision format lives in mitos/format-spec.md. License: Apache 2.0.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mitos)<a href="https://allmcps.com/mcp/mitos"><img src="https://allmcps.com/api/badge/mitos?style=directory" alt="Mitos on AllMCPs" /></a>