AI-native version control where intent, operation, evidence and decision are first-class objects.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An AI-native version control system for humans and AI agents working concurrently.
An agent should not spend its context on version control. That is the whole design goal, and it is measured rather than asserted β here is what the same work costs an agent:
| What an agent pays for | git / the full surface | AVCS |
|---|---|---|
| Landing a change after someone else's PR merged first (30 KB module) | 18,922 tokens | 279 tokens β 99% less |
| Round trips to finish that recovery | 7 | 4 |
| Tool schema, paid on every session | β8.8k tokens (39 tools) | β3.5k tokens (13, --profile core) |
| What a same-line collision hands the model | the whole file, with conflict markers | one object naming the two contending operations |
git's recovery cost tracks the size of the file β a conflict is bytes inside it, so the agent reads the whole module and writes the whole module back to change one line. AVCS's tracks the size of the change: a conflict is an object naming the two contending operations, so it stays flat as the file grows. There is also no branch to rewrite and nothing to force-push, which is why the round trips differ β and that is one cycle, repeated for every PR that merges ahead of yours. Across the file sizes measured the saving is 37β99%.
None of this is a compression trick bolted on afterwards. It falls out of storing the operation graph instead of snapshots: there is no rebase to perform, so there is nothing to re-read. Method, caveats and the harness that produced the rebase numbers: avcs-demo β what it costs an agent in tokens. The schema figures are the advertised MCP surface itself β 35 KB of JSON against 14 KB, at the usual β4 bytes per token.
Git records when the code changed. AVCS records who changed it, with what intent, on what evidence, and through which conflict decisions the code reached its current state.
AVCS is a new, deliberately Git-incompatible version control system built for a world where humans and many AI agents edit the same codebase concurrently. It drops the commit / branch / merge / conflict-marker model and instead stores intent, session, operation, evidence, and decision as first-class objects. The code tree is not the source of truth β it is a projection computed by deterministically reducing the operation graph:
The same objects + the same policy + the same materializer produce the same tree on any replica. Merging is not text selection; it is a pure, deterministic reduction.
Status: research prototype. The implementation is real and test-covered, but every phase is built to a working-MVP depth (language-neutral text 3-way merge, ed25519 signing). Structure-aware merge, semantic-break detection, multi-signature trust, and hardened distributed sync are tracked on the roadmap.
Jump in: install Β· your first five minutes Β· work against a server Β· connect an agent over MCP Β· agent quickstart walkthrough
See it run first: izagood/avcs-demo β a runnable
demo of the question this design answers: what happens when two agents edit the same file at
the same time? One ./demo.sh walks a stale-head land that is absorbed instead of rejected,
a same-file auto-merge with no rebase, and a same-line collision that becomes a signed
decision rather than conflict markers.
Every "AI + git" tool eventually stores the agent's context beside the history β commit trailers, PR comments, sidecar JSON. AVCS exists because these objects have to be load-bearing β consumed by the merge machinery itself β and bolted onto git they can't be:
git merge resolves a conflict by emitting bytes;
the choice and its rationale evaporate. An AVCS decision is a signed object β
recallable later, and prior decisions bias future auto-resolution.<<<<<<< in the tree
plus a human holding the pieces.intent (goal +
constraints + allowed scope) is what sessions open against, what leases and contention
checks are scoped by, and what avcs.context.build hands the next agent.git stores snapshots and leaves the merge to text selection; AVCS stores the operation graph and makes the merge a computation over intent, evidence, and decisions. That is why it is deliberately git-incompatible β these objects are the engine, not metadata. (git interop still exists, as a bridge: docs/14, docs/20.)
| # | Principle | Contrast with Git |
|---|---|---|
| 1 | Operations are history, not commits | A commit is merely a checkpoint over many operations |
| 2 | Identity is the entity ID, not the file path | Rename + edit can auto-merge |
| 3 | Merge is a deterministic reduction, not text selection | No conflict markers |
| 4 | A conflict is a first-class decision object, not a broken file | The rationale stays in history |
| 5 | AI output is a proposed operation with attached evidence, not trusted code | A behavior change with no test cannot be accepted |
| 6 | Code never defaults to last-write-wins | Precedence is decided by policy |
Every meaningful thing is a content-addressed, append-only object. Code is a projection over the operation DAG, never stored as commits.
| Object | Role |
|---|---|
intent | Why a change is being made (goal + constraints + allowed scope) |
session | An agent/human work episode against an intent |
operation | A single semantic change unit β the real history |
evidence | Machine-checkable proof (test / typecheck / lint / scan) attached to operations |
decision | A recorded resolution of a conflict or design choice |
checkpoint | A verified (ops + policy + materializer) state vector β replaces a commit |
view | A declarative query over the operation graph β replaces a branch |
release | A signed, provenance-bearing checkpoint β replaces a tag |
policy | The deterministic merge rules the reducer is parameterized by |
β¦plus blob for raw content and the governance objects (lease, membership, protection, promotion, redaction, override, approval, line, integration) used by the multi-machine and security phases.
AVCS never falls back to last-write-wins for code. Contending operations are graded and resolved with a recorded rationale:
autoDecisionsEvidence trust matters: an operation's own author cannot vouch for it. Evidence-gating and the passing-test bonus only count evidence produced by a non-authoring, trusted actor (CI bot / human).
The reducer and policy engine are the foundation; the higher phases build distributed collaboration, security, and observability on top.
Foundation (Phases 1β6)
.avcs/objects)src/merge/merge3.ts), so edits to disjoint regions of one file auto-merge regardless of language; overlapping edits become a policy-resolved conflict region. No language parsing in the coreWorkLease, RepairContextrecallDecisions) and distilled "learned policies" that bias future auto-resolutionNo 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/avcs)<a href="https://allmcps.com/mcp/avcs"><img src="https://allmcps.com/api/badge/avcs?style=directory" alt="AVCS on AllMCPs" /></a>