Local-first version control for AI work. Savepoint and resume your project state across chats.
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.
Never explain your project to an AI twice.
Your chat is a workspace, not an archive. StateArk turns a working session into a versioned, portable project state that any new chat can pick up. Open terminal and write:
Then quit Claude Desktop completely (Cmd+Q) and reopen it. That is the whole install.
(Prefer to install from source? npm install && npm run build && npm run setup β
see INSTALL.md. Undo any time with npx stateark remove.)
Here what we had in mind developing stateark - we address a problem millions of users have...
Local by default. Savepoints are ordinary folders of Markdown, JSON and your real files. Nothing is uploaded. If StateArk disappears tomorrow, you still have everything.
| In the chat | What happens |
|---|---|
Savepoint | consolidate the session into a new version |
Resume <project> | load the latest state into a fresh chat |
History <project> | list the versions |
Diff <project> | what actually changed between two savepoints |
| In the terminal | |
|---|---|
npx stateark | register with Claude Desktop |
npx stateark report | anonymised local usage summary, printed for you only |
npx stateark remove | unregister; savepoints are kept |
// ... rest unchanged), files that collapsed in size, files the
state describes but never handed over, savepoints identical to their predecessor.
It warns, it never blocks: the savepoint is always written.Node 20+. Claude Desktop, or Claude Code (claude mcp add --transport http ...).
It also runs under other local MCP hosts β users have it working with Codex and
Hermes against the same store.
Hosted clients that dial your server from the vendor's cloud (Claude web,
ChatGPT web) cannot reach localhost. See INSTALL.md.
Supported, and worth saying plainly because it is the setup that broke first. Writes to a project are serialised across processes, so two agents cannot claim the same version number. If a savepoint reports that another process is busy, repeat it in a moment β nothing is lost. A process that dies mid-write releases its lock automatically.
If your store lives in Dropbox, OneDrive or iCloud Drive: several agents on one machine are fine. Two machines writing the same store simultaneously is a sync conflict, which the sync client resolves and StateArk cannot.
| Variable | Default | |
|---|---|---|
STATEARK_LOCK_WAIT_MS | 60000 | how long to wait for another process before giving up |
STATEARK_LOCK_STALE_MS | 120000 | when a lock is assumed to belong to a dead process |
STATEARK_FS_RETRIES | 6 | retries when a sync client holds a file open |
Elastic License 2.0. Use it for anything including commercially, read and modify the source, share the package. You may not offer it to third parties as a hosted or managed service. Your savepoints are yours and are not covered by this licence.
A Savepoint is an ordinary directory, not a proprietary database:
If StateArk disappears, those files remain usable.
Requires Node 20+.
No .env is needed for local-only mode. Copy .env.example to .env only if you want
to change the port, the store location, or enable the Supabase mirror.
On first run StateArk generates a random access key and stores it in
~/StateArk/.access-key (mode 0600). The startup banner prints your endpoints:
The HTTP entrypoint is a local server on your own machine, so StateArk assumes any web page you visit is hostile:
| Control | Default |
|---|---|
| Bind address | 127.0.0.1 (STATEARK_BIND to change) |
| Access key | random per install, in <root>/.access-key, constant-time compared |
Origin header | loopback only, plus STATEARK_ALLOWED_ORIGINS |
Host header | loopback only, plus STATEARK_ALLOWED_HOSTS (DNS-rebinding guard) |
| CORS | echoes the validated origin, never * |
| Upload form | single-use CSRF token, capped body size |
| Non-loopback bind | refuses to start unless the access key is β₯ 24 chars |
Before exposing the agent over HTTPS: set a long STATEARK_ACCESS_KEY, set
STATEARK_ALLOWED_HOSTS to your tunnel hostname, and put a real reverse proxy in front.
Local-first and hosted LLMs are different networking environments. Claude Desktop/Code and
other local MCP clients can talk to the local agent directly. A hosted ChatGPT/Gemini
client generally cannot reach localhost on your computer. For those you would need a
secure HTTPS route to your running local agent β remote access is on the roadmap and does
not exist yet.
If you are setting this up, in this order:
Leave SUPABASE_URL, SUPABASE_SECRET_KEY and STATEARK_OWNER_ID unset. Cloud sync stays
off and files never leave the machine. Default store: ~/StateArk
(override with STATEARK_LOCAL_ROOT).
This is what you get out of the box. The Supabase section below is opt-in.
Run the migrations in the Supabase SQL editor, in order:
supabase/migrations/001_stateark.sqlsupabase/migrations/002_artifacts.sqlsupabase/migrations/003_hardening.sqlThen set SUPABASE_URL, SUPABASE_SECRET_KEY (server-side Secret key, never a
publishable key), STATEARK_OWNER_ID, and STATEARK_STORAGE_BUCKET.
Cloud is a mirror, not the master:
meta.json (disabled / pending / synced / failed);sync_savepoint tool.Text/code artifacts up to 2 MB are mirrored inline in Postgres; everything else goes to the private Storage bucket. The mirror is not end-to-end encrypted β the Supabase project can read what it stores. Sync is off by default for exactly that reason; turn it on only for a project you would be comfortable putting in any hosted database.
When you say Savepoint, the host LLM should:
transfer=text;transfer=base64 only when truly available;transfer=pending instead of fabricating it;... rest unchanged.Local creation is atomic: StateArk writes a temporary bundle and renames it only when
complete. Artifact names are sanitised; if a name had to be changed, manifest.json
records the original under original_name.
Every savepoint is compared against its predecessor. Findings are returned in the tool
result and rendered at the top of state.md. The savepoint is always written β a
check never costs you work, it only tells the model to come clean.
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/stateark)<a href="https://allmcps.com/mcp/stateark"><img src="https://allmcps.com/api/badge/stateark?style=directory" alt="Stateark on AllMCPs" /></a>