Share ordinary text files between concurrent agents without silently overwriting edits.
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.
Test coverage: 83.3% ππ
Distributed durable notebook built for high scale agents.
slivingdoc uses terminology we (and agents) all know, designed for ease of usedocs/slivingdoc-v1.md is the full accepted
contract behind these guarantees.
Add it to your agentic harness:
The bucket must exist, and credentials come from the normal AWS chain.
No S3 account yet? examples/seaweedfs/ runs a local
SeaweedFS container with a step-by-step walkthrough. You can also download
a native binary directly from the
GitHub release
(slivingdoc-v<semver>-<os>-<arch>) and run it in place.
Supported platforms: Linux (amd64, 32-bit ARMv7, arm64), macOS (amd64, arm64), and Windows (amd64). The 32-bit Linux ARM artifact supports Raspberry Pi OS armhf.
The server exposes two MCP tools over stdio:
| Tool | Inputs | Success result |
|---|---|---|
notes_pull | path (optional) | OK |
notes_commit | message, path (optional) | OK |
No path needed. Each server takes its own private notebook directory and
tells the agent where it is, in the server instructions and in every tool
result, so nothing has to be configured or coordinated between agents. Pass
--workspace-root instead when you want a fixed directory that humans and
agents share, and path then addresses any directory below it.
notes_pull writes the current notebook into your directory.
notes_commit publishes your changes and incorporates concurrent
non-conflicting changes. Between calls there is no protocol at all β
agents edit the files with the tools they already have, and humans can
write in the same directory with any editor. The next commit carries
their changes too.
Humans can also drive both operations directly, without an MCP host. The path is optional and defaults to the working directory; a relative path resolves against it:
Success prints the unified result report: the OK status, the accepted
remote generation, per-file insertion and deletion counts, and a totals
trailer. A domain error exits nonzero and prints a candid report: the
error category, the retryable verdict, and every conflicted file with its
line ranges. Colour appears only on a real terminal and is disabled by
any non-empty NO_COLOR.
Letting all agents write at once would work, but they would get overrun by race conditions.
So slivingdoc has built-in git via libgit2 which effectively
does:
git pullgit add .git commit -m "<agent message>"git pushAll of these git operations are handled locally within a private mirror of the notes directory
leaving a "streamlined" git sequence. This works due to two compromises, firstly that the local
notes directory is prone to be changed on notes_pull, precedence goes to the remote state, leaving
conflict markers. Secondly, the system only works for text (clean UTF-8).
serve, pull, and commit read the same flags and environment
variables. --bucket is required. The most common flags:
| Flag | Environment | Default |
|---|---|---|
--bucket | SLIVINGDOC_BUCKET | β (required) |
--workspace-root | SLIVINGDOC_WORKSPACE_ROOT | temporary dir1 |
--endpoint | AWS_ENDPOINT_URL_S3 | AWS resolution |
--region | AWS_REGION | us-east-1 |
slivingdoc serve -h prints the full reference, and
docs/running.md covers everything an operator
needs: all flags, the exact S3 permissions, logging (LOG_LEVEL on
stderr), the notebook rules, conflict recovery, and checkpoint
retention. The Terraform module in terraform/
provisions a bucket and a least-privilege IAM user for one notebook.
AGENTS.md β the developer and agent guide: package
map, operation flows, conventions, and the QA gates.docs/slivingdoc-v1.md β the accepted
architecture contract.docs/build.md β the native build, from pinned
libgit2 source to dependency inspection.docs/testing.md β the test commands, the test
layers, and the no-live-AWS rule.docs/releasing.md β release artifacts, npm
trusted publishing, and make release.MIT β see LICENSE. Third-party notices for the statically linked libgit2 are in NOTICE.
Not affiliated with Paris Hilton.
serve with no configured root takes a per-process temporary
notebook directory and removes it at shutdown; the notes themselves live
in the bucket. pull and commit default to the working directory. β©
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/slivingdoc)<a href="https://allmcps.com/mcp/slivingdoc"><img src="https://allmcps.com/api/badge/slivingdoc?style=directory" alt="Slivingdoc on AllMCPs" /></a>