Read and write checked code rationale stored outside source comments.
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.
Someone wrote retry 5 times instead of 3, and there was a good reason. Six
months later nobody remembers it, so it gets "simplified" back to 3 and the bug
returns.
A comment was supposed to prevent that. Comments rot: they sit next to the code without being attached to it, and when the code changes nothing tells you the comment just became a lie. Your AI agent then reads that lie and acts on it.
You record the reason outside the source, anchored to the exact lines it explains. Then koment watches those lines. Change them, and it says so:
Exit code 1. The build stops. Nobody silently inherits a reason that no longer describes the code.
The records are YAML in .koment/, in your git repository. No database, no
service, no account. They review in the same pull request as the change that
motivated them.
See it running β β koment's own annotations, published by a workflow you can copy.
This is where it earns its keep. Agents write explanatory comments constantly, and they edit code without reading why it was written that way. koment makes both of those fail immediately, while the agent is still working:
One MCP server serves Claude Code, Cursor, Codex, opencode, Hermes, Zed and the rest, so every agent reads the same reasoning through the same interface. Set yours up β
Humans get the same loop in the editor: a squiggle under the comment, and a quick fix offering convert to annotation or keep it, on the record.
In GitHub Actions, uses: koment-dev/koment@v3. Or take a checksum-listed
binary for Linux, macOS or Windows on amd64/arm64 from the
latest release β every
other channel is built from those same artifacts.
From inside any git repository:
That sets up .koment/ and wires whichever agents you use. Now record a reason
and watch it get checked:
Now edit that line and run koment check again. It fails, and tells you
which reasoning no longer matches its code. That is the entire product; the rest
is delivering it to the people and agents who need it.
You annotate a snippet. koment records the prose, exact excerpt, surrounding source context, the commit you were on, and who you are.
The record lands in .koment/annotations/<id>.yaml, one file per
annotation. Concurrent agents create independent files instead of replacing
one shared list.
Resolution searches the current file for that excerpt and produces exactly one status:
| meaning | build | |
|---|---|---|
ok | found where it was last seen | passes |
ambiguous | several contextual candidates remain | fails |
drifted | file exists, the annotated code is gone | fails |
orphaned | the file is gone | fails |
koment check exits non-zero on ambiguous, drifted or orphaned. That
is the whole mechanism: uncertain rationale is worse than no annotation, so
it has to be impossible to ignore.
When it fails, koment reanchor <id> --excerpt '<new text>' repoints it β
keeping its id and creation date, recapturing context and the line for you.
Nothing re-attaches automatically; a person confirms the reasoning still holds.
Anchoring is by excerpt, never by line number β line numbers rot on the next edit above them. The commit hash is recorded, but only to reconstruct history; it never decides whether an annotation still applies. Those are two different questions with two different mechanisms.
Local writes change the checkout you are already reviewing. Served writes never touch a replica or push a default branch: they create an exact annotation on a deterministic branch and return only after its pull request exists. Static publications remain immutable and read-only.
Pick one. Each is a place to stop, not a step you have to take, and moving
between them is not a migration β all three read the same .koment/ in git,
so there is nothing to export, import or back up.
| you run | you get | |
|---|---|---|
| local | the CLI, koment ui --write, and koment mcp --write | humans and agents read and write the same checked records. Nothing to host. |
| published | one workflow file β GitHub Pages | everyone reads the annotations in a browser. No server, no auth to design, no cost. |
| served | the container or the Helm chart | authenticated, commit-stamped GitHub snapshots for several repositories, cross-repository search, reviewed annotation PRs, metrics |
One deployment serves many. Identity is assigned independently of provider path, and every refresh resolves a branch to one immutable commit before replacing a repository's active snapshot:
The service starts only when a non-loopback listener has either trusted-proxy identity or scoped bearer credentials. Private repositories and reviewed writes also require a GitHub token. The Helm chart documentation shows the secret formats and boundary.
Local commands need none of this configuration β koment finds the owning checkout by walking up from the working directory.
koment publishes an OCI Helm chart to oci://ghcr.io/koment-dev/charts/koment:
The application port authenticates source, rationale, UI and MCP; only liveness
and readiness are public. Metrics use a separate listener so an ingress cannot
accidentally expose them with application authentication. The chart includes a
Grafana dashboard, ServiceMonitor, hardened pod defaults, optional NetworkPolicy
and disruption controls, and a digest-pinned helm test probe.
Every flag can be set from the environment. --flag-name becomes
KOMENT_FLAG_NAME, and an explicit flag always wins.
KOMENT_CONFIG | strict served repository YAML |
KOMENT_CREDENTIALS_FILE | secret file of SHA-256 bearer hashes and repository scopes |
KOMENT_GITHUB_TOKEN_FILE | provider token file for private reads and reviewed writes |
KOMENT_LISTEN | local UI or unified service address |
KOMENT_HUMAN_WRITES | allow identities from the trusted OIDC proxy to create reviewed annotations |
KOMENT_TRUSTED_PROXIES | CIDRs allowed to assert forwarded human identity |
KOMENT_SYNC_INTERVAL | provider snapshot refresh interval |
KOMENT_METRICS | separate metrics listener; off unless set |
KOMENT_WRITE | enable local UI or stdio MCP mutations |
KOMENT_OUT | static publication output directory |
Git is the only authoritative record. Local reads resolve the YAML directly against the working tree; disposable read models cannot restore or overwrite Git.
koment <command> --help lists every flag alongside its variable.
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/koment)<a href="https://allmcps.com/mcp/koment"><img src="https://allmcps.com/api/badge/koment?style=directory" alt="Koment on AllMCPs" /></a>