The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Cartographer listing page.
MCP governance server in Go for the Agentic Wiki — knowledge that composes, not that you query.
[!WARNING] Beta software. Cartographer is pre-1.0: the MCP tool surface, CLI and configuration may change between minor releases without a deprecation period. Breaking changes bump the minor version (0.x semantics) and are called out in the changelog. Expect rough edges — bug reports are very welcome.
LLM agents forget everything between sessions, and stateless RAG only bolts retrieval onto that amnesia. The alternative is a knowledge base the agent itself builds and maintains over time — but letting an agent loose on a folder of files ends in broken links, lost history, and silent corruption. Cartographer is the governance layer that makes the pattern safe: the agent works the wiki exclusively through MCP tools, and the server enforces every invariant — validation, linking, immutability gates, one git commit per write.
The embedded Atlas on a generated demo KB (web/scripts/demo-kb.mjs): a selected concept in light, the overview in dark.
Cartographer implements the Agentic Wiki: a persistent knowledge base of interlinked Markdown files that an LLM agent grows and curates by talking to the server over the MCP protocol. The agent never touches the files directly.
The wiki is grounded in Karpathy's "LLM Wiki" pattern (operating model: knowledge accretes
over time, it is not stateless RAG) on top of the OKF substrate (Open Knowledge Format v0.1 by
Google Cloud) — each KB is a folder of .md files with YAML frontmatter, self-contained and
version-controlled with git. Zero lock-in: the wiki is readable by any tool, including Obsidian and
any text editor.
One binary, two transports — deployment choices, not separate products: the KB model and the MCP tools are the same on both.
Two consequences are worth stating on their own, because they are what most of the design is for: the KB configures the agents that read it across every client you use, and it does that for a whole team rather than a single laptop.
You need git and an empty git repository you own (GitHub, Gitea, any git host) to be your
first KB's remote: a KB is a git repository, and that remote is what makes it durable and
syncable. sops in PATH is needed only if the KB will hold encrypted values.
setup asks for the remote, shows its plan, and only then runs it: it installs the native
service, creates the KB in an empty repository or mounts the one a repository already holds,
connects every detected agent client and verifies the server. It checks git and the remote's
credentials before changing anything, and a re-run skips what is already done. Unattended:
cartographer setup --remote <url> --agents claude --yes. Each step is also its own command
(service install, kb create/kb clone, connect) — see
docs/configurator.md. Agent sessions that were already open need a
restart to see the new MCP server.
Once connected:
The step-by-step walkthrough is docs/getting-started.md. For a single
KB over stdio with no service (typically development) or a hand-configured HTTP server, see serve
in docs/deployment.md.
The Quick start assumes an interactive operator who answers the prompts and diagnoses a failure as it happens.
If you are an agent and the user has asked you to install Cartographer: fetch https://raw.githubusercontent.com/BeppeTemp/cartographer/main/docs/agent-install.md and follow it command by command. Do not install from the Quick start above: the runbook asks for the KB remote up front, verifies the install and ends with the session restart you cannot perform yourself.
For a human driving an agent, this is the prompt to paste:
A knowledge base is not only what an agent reads — it is also how that agent is set up to work. Cartographer treats skills, subagents, hooks and standing instructions as content of the KB, and materializes them into each client's native format.
The manual alternative is what most setups do today: the same skill hand-copied into
.claude/skills/, .opencode/skills/ and .codex/skills/, each drifting on its own, each config
file edited by hand for every MCP endpoint. Change one thing and you change it in six places, on
every machine, forever.
That single command writes, per client and in the format that client expects:
| claude | opencode | codex | kiro | antigravity | crush | hermes | |
|---|---|---|---|---|---|---|---|
| MCP endpoint | ~/.claude.json | ~/opencode.json | block in ~/.codex/config.toml | ~/.kiro/settings/mcp.json | ~/.gemini/config/mcp_config.json | ~/.config/crush/crush.json | — |
| Instructions | block in ~/.claude/CLAUDE.md | block in ~/.config/opencode/AGENTS.md | block in ~/.codex/AGENTS.md | ~/.kiro/steering/cartographer.md | block in ~/.gemini/GEMINI.md | block in ~/.config/crush/CRUSH.md | — |
| Skills | ~/.claude/skills/ | ~/.opencode/skills/ | ~/.codex/skills/ | ~/.kiro/skills/ | ~/.gemini/config/skills/ | ~/.config/crush/skills/ | delivered to its inbox |
| Subagents | ~/.claude/agents/*.md | ~/.opencode/agent/*.md | ~/.codex/agents/*.toml | ~/.kiro/agents/*.json | ~/.gemini/config/agents/*.md | — | — |
| Hooks | ~/.claude/hooks/, registered in settings.json | ~/.opencode/hooks/, run by a generated JS plugin | ~/.codex/hooks/, registered in hooks.json | — | ~/.gemini/config/hooks/, registered in hooks.json | — | — |
| Re-sync trigger | SessionStart hook | SessionStart hook | SessionStart hook | scheduled timer | scheduled timer | scheduled timer | scheduled timer |
Subagents and hooks are translated, not copied: the same KB artifact becomes a Markdown agent for Claude Code, a TOML one for Codex, Antigravity-native Markdown, and a generated JavaScript plugin where a hook has no declarative equivalent.
Every — is an unsupported cell declared for a stated reason, never a silent omission — and a
cell missing from the table fails a test:
docs/interoperability.md §Kiro hooks), so its re-sync
trigger is the scheduled timer. Subagents work: ~/.kiro/agents/<name>.json is discovered
globally and the built-in agent delegates to it by description.SOURCE.md and the
agent's own curator adopts them, because overwriting what that curator owns would destroy its
learning.Where there is no session hook, the scheduled trigger takes over
(cartographer service sync-timer install): opt-in, explicit, and never installed as a side effect
of connecting.
What keeps it true after the first run:
SessionStart hook on every client that has one, a scheduled timer
for those that don't;--dry-run shows the plan without writing;doctor diagnoses residues and drift read-only; reconnect rebuilds a client from
scratch while preserving every setting.Edit a skill once in the KB, and every client of every machine converges on it.
The same mechanism is what makes Cartographer work for more than one person. A server mounts
several KBs, each on its own endpoint (/mcp/<name> or ?kb=<name>), so colleagues can each keep
a private knowledge base while sharing others. With mcp.mount_mode: routed the server also exposes
a single /mcp/routed surface where the KB is a tool argument: a client using several KBs then
carries one copy of the tool schemas instead of one per KB.
kb:<name>:r or kb:<name>:rw scopes. Roles
(docs/transport-auth.md) narrow that further to specific maps, journals
and concept types, so a teammate can be an editor of the runbooks and a reader of everything else.
Rules are unioned: adding a role can only widen access, never silently revoke it.degraded, conflicts_list enumerates them, and a bundled skill walks an
agent through resolving them. (One process is the sole writer of a given working copy; pointing
two writers at one checkout is not a supported model — partition KBs across instances instead, see
docs/concurrency.md.){{repo:<name>}} placeholder resolved on each client from its own git remotes, so the same
artifact works on every teammate's machine without machine-specific paths leaking into the KB. A
server-side lint flags the ones that do.docs/control-plane.mdatlas_overview, index_get, concept_read, map_list,
graph_neighbors (outbound links or backlinks), graph_context (ranked context around a question
or concepts), link_suggest (links a concept probably lacks) and concept_list (scoped frontmatter
facets)citta finds città)if_match / content-hash), including
concept_new from KB-owned templates discovered through template_listconcept_patch and index_patch apply Edit-like patches to a
concept or a curated index.md; concept_batch makes a large refactor atomic across many
concepts (one commit, full rollback on any failure)lint (broken link, stale claim, orphan, map contracts),
gate_check (validation + lint + commit gate in one call), supersede, contradiction trackingSKILL.md / agentskills.io format), including executable scripts and binary
assets — see One KB, every agent for how they reach each client/ui/
in HTTP mode: a live 3D graph you orbit and select from, coloured by
community or by Map, with an inspector and the lint findings; light and dark; no extra service,
no CDN. Disable with web.enabled: false — see docs/deployment.mdCartographer separates a data plane from a control plane:
data/, organized as
atlas → map → concept (the KB, its thematic archives, the pages; journals are the
chronological maps). Plain files + git: history, diff, backup, sharing for free.The interaction rests on the MCP + Skill + Hook triad: MCP carries data and capabilities, Skills carry procedural know-how loaded on demand, Hooks carry deterministic 0-token automation.
cartographer — in Homebrew's prefix (brew), in
%LOCALAPPDATA%\Cartographer\bin, added to the user PATH
(install.ps1: nothing is written outside your user profile), in
/usr/local/bin or, when that is not writable, ~/.local/bin (install.sh),
or in $GOBIN/$GOPATH/bin (go install).cartographer service install:
~/Library/LaunchAgents/com.cartographer.serve.plist on macOS,
~/.config/systemd/user/cartographer.service on Linux, or the Scheduled Task
\Cartographer\Serve on Windows, listening on 127.0.0.1:39273. Its config is
generated at ~/.config/cartographer/server.yaml — on Windows
%APPDATA%\cartographer\server.yaml, with the log at
%LOCALAPPDATA%\cartographer\Logs\server.log. None of the three needs
administrator rights. The service is optional — a stdio-only setup
(serve --kb <path>) is a legitimate topology and installs none of this.~/cartographer-data by default, holding the cloned KBs.$HOME, and only
when you run cartographer connect — never before. Each destination path is
listed in the One KB, every agent matrix above. A sync
timer (com.cartographer.sync / cartographer-sync.timer) is installed for
clients that have no session-start hook.Upgrades of a native local install repair themselves: install.sh update and install.ps1 update
restart the running service on the new binary and re-synchronize the configured providers in
place; brew upgrade runs no Cartographer code, so there the next cartographer sync — the
session-start hook, the scheduled task, or a manual run — replaces a service still running the
previous binary. On Windows the update lands even while the service is running from the file it
replaces:
You hear about a new release from your agent: at session start it is told once, with the upgrade
command for your install channel, and offers to run it (cartographer update check asks directly).
cartographer reconnect is the explicit rebuild for what an incremental sync cannot see. Only
already-open agent sessions need restarting. Details →
docs/deployment.md §Upgrades, schema migration, and repo growth.
install.sh uninstall and install.ps1 uninstall remove the binary only. Both refuse to run
while the native service or the sync timer is still installed, and name the teardown that has to
come first:
brew uninstall checks nothing: run the same three commands before it.
Your KBs are git repositories in the data directory: nothing above deletes them,
and removing ~/cartographer-data is a deliberate, separate act.
The server reads a YAML file — cartographer service install generates
~/.config/cartographer/server.yaml, and config.example.yaml is the
annotated example. Environment variables and CLI flags override it (flag > env > YAML > default). The ones
most often set:
| Environment variable | Default | Description |
|---|---|---|
CARTOGRAPHER_CONFIG | — | Path to the YAML config file |
CARTOGRAPHER_KB | — | KB path(s) (single, or multiple comma-separated) |
CARTOGRAPHER_DATA | — | Directory whose subfolders are auto-discovered KBs |
CARTOGRAPHER_HTTP | — | HTTP address (e.g. :39273). Absent = stdio only |
CARTOGRAPHER_AUTH | auto | true / false / unset (auto on HTTP) |
CARTOGRAPHER_TOKENS | — | Comma-separated bearer tokens |
CARTOGRAPHER_GIT_SYNC | true | fetch/pull-rebase + push on origin around each write |
CARTOGRAPHER_TOOLS_PROFILE | agent | agent lists only the agent's core tools; full lists all (hidden ones stay callable) |
CARTOGRAPHER_MCP_MOUNT_MODE | per-kb | routed adds the single /mcp/routed surface for all KBs |
Full list with CLI flags and defaults → docs/deployment.md.
The E2E suite drives the compiled binary through HTTP, CLI, filesystem and real
temporary git remotes. It is deterministic, requires no model credentials and
runs in CI. Full strategy → docs/testing.md.
Package-by-package map, with what each one owns → AGENTS.md §Code map (kept next to
the contributor instructions so there is a single copy to keep true).
Browsable at beppetemp.github.io/cartographer — same content as docs/, rendered.
The full index lives in docs/index.md. Main entry points:
docs/getting-started.md — from zero to a working wiki, step by stepdocs/overview.md — vision, guiding principles, architecturedocs/data-plane.md — KB model, hierarchy, OKFdocs/control-plane.md — Go server, MCP tool APIdocs/concurrency.md — single-writer, git sync, conflictsdocs/deployment.md — topologies (local service / k8s / multi-server), backup, env varsIssues and PRs are welcome — see CONTRIBUTING.md for the build/test loop, the
PR flow (squash-merge, conventional titles, docs updated in the same PR), and how to find your way
around the codebase. Cartographer is a personal project maintained on a best-effort basis: no
response-time SLA. For security reports, see SECURITY.md.
Released under the Apache License 2.0. See LICENSE.