stigmergy
Captures notes, meeting transcripts, and documents submitted via Slack, and uses Slack for steward approval of new entities.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@stigmergywhat did we decide about the API design?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Stigmergy is the team version of the wiki in Karpathy's gist. Immutable source material enters one queue, one librarian agent keeps a small Git-and-Markdown wiki current, and every search and answer is scoped to what the caller may see.
Ants coordinate by leaving traces in the environment, not by talking to each other. Here every capture is a trace — a person reacting in Slack, an agent finishing a task in Claude Code — the librarian follows the traces, and the wiki emerges. Nobody approves a queue.
Why
A one-person wiki works because the loop is tiny. Once several people and agents write to the same wiki, you need what a shared deployment forces on you: identity, visibility, concurrency, binary evidence, Slack, audit. Stigmergy adds exactly that and nothing that duplicates the loop.
Capture where the work happens | Agents through the MCP bridge, people through a |
Evidence you can trust | Exact bytes in a private store; one immutable source page per capture. |
A librarian that files | Creates, rewrites, consolidates, and deletes pages without approval. |
Answers with receipts | Hybrid search and |
Visibility on writes too | Restricted evidence never shapes a page a broader audience can read. |
Honest contradictions | Conflicting claims stay explicit, dated, and cited. |
Self-healing corpus | A scheduled gardener repairs through the same gates. No human to-do list. |
Full audit | One operation, one commit, one change record with the exact patch. |
Related MCP server: sourcebook
How it works
Capture. Thin adapters authenticate and acquire bytes. Local files and private Google Drive documents stay on your machine until uploaded through a presigned URL.
Queue. Every adapter produces the same kind-free
CaptureEnvelope. The Postgres queue is durable, leased, and idempotent per actor and client key.Write. One serialized writer extracts text, renders the immutable source page, asks the librarian for a
FilingPlan, and advances the branch only when every gate passes.Remember. The knowledge repository is plain Git and Markdown. Postgres is operational state and a rebuildable index, never a second wiki.
Read. Five MCP tools for agents,
@brainfor people, one visibility policy. A webhook indexes incrementally; a nightly full rebuild guarantees convergence.
The write path
States are queued → processing → landed | failed. Nothing waits for a human: ambiguity becomes
an explicit contradiction, technical failures retry within a bounded lease, and a terminal failure
carries a typed error the master can retry. A crash after the commit is reconciled by commit SHA,
never by a second commit.
The librarian may create or rewrite a note or concept, consolidate and delete a redundant page,
propose an entity claim, add or resolve a contradiction, or file nothing — the source still lands.
It never rewrites sources/ and never broadens an ACL. Deletion is a separate explicit operation
(brain_delete) through the same writer and gates.
The knowledge model
Role | Location | Mutable by filing? | Meaning |
Note |
| yes | contextual conclusion, decision, or event |
Concept |
| yes | durable explanatory knowledge |
Entity identity |
| entity primitives only | opaque ID and scoped name claims |
Source |
| no | immutable evidence for one capture |
A note or concept carries a maturity (seed, developing, mature, evergreen), an optional
ACL, entity anchors, and its sources:
---
id: page_aurora_renewal
type: note
title: Aurora renewal
status: mature
created: 2026-08-10
updated: 2026-08-10
acl:
- sales
entity:
- ent_11111111-1111-4111-8111-111111111111
sources:
- sources/2026/08/20000000-0000-4000-8000-000000000002.md
---
# Aurora renewal
Aurora Systems agreed to an annual renewal with a budget of EUR 120,000. The renewed term starts
on 15 September 2026.Entities are opaque IDs with scoped, sourced name claims; facts live in notes and concepts and
describe_entity composes them at read time. Merging needs a shared external ID or an exact
assertion in a source — resemblance does nothing.
When credible sources disagree, the librarian keeps both claims in a strict marker on the narrowest page whose readers may see both:
> [!WARNING] Unresolved contradiction `con_3f1c2b9a-6d4e-4a2b-9c1d-2f7e8a9b0c1d`
> The two renewal sources disagree on the annual budget.
> - **Claim:** The annual renewal budget is EUR 120,000
> **Date:** `2026-08-10`
> **Source:** `sources/2026/08/20000000-0000-4000-8000-000000000002.md`
> - **Claim:** The annual renewal budget is EUR 95,000
> **Date:** `2026-08-18`
> **Source:** `sources/2026/08/40000000-0000-4000-8000-000000000004.md`A master may later submit a resolution; it is an ordinary capture, and the marker goes away only
when the new evidence actually resolves it. Direct and local MCP submissions use the optional
resolution_of="con_<uuid>" argument. The writer accepts it only from the master, only for that
exact visible marker, and only at a safe audience; an unauthorized attempt still archives its source
but applies none of the librarian plan.
Using it
From Claude Code or Codex
Install the bridge once per machine and point it at your deployment. It proxies the read tools to the cloud and acquires local files, public URLs, and private Google Drive documents locally.
uv tool install git+https://github.com/sturlese/stigmergy.git
export STIGMERGY_TOKEN="<identity-token>"Claude Code, .mcp.json:
{
"mcpServers": {
"stigmergy": {
"command": "stigmergy-bridge",
"args": ["--url", "https://stigmergy.example.com"],
"env": {
"STIGMERGY_TOKEN": "${STIGMERGY_TOKEN}",
"STIGMERGY_GOOGLE_CLIENT_SECRETS": "${STIGMERGY_GOOGLE_CLIENT_SECRETS:-}"
}
}
}
}Codex, .codex/config.toml:
[mcp_servers.stigmergy]
command = "stigmergy-bridge"
args = ["--url", "https://stigmergy.example.com"]
env_vars = ["STIGMERGY_TOKEN", "STIGMERGY_GOOGLE_CLIENT_SECRETS"]
required = trueYou say | What happens |
"Save the conclusions to the brain." |
|
"File ~/Downloads/board-deck.pdf." | The bridge uploads the bytes; the worker extracts, OCRs scanned pages, files. |
"Capture https://docs.google.com/document/d/…" | Local Google OAuth, token in your keychain, DOCX export uploaded. |
"What did we decide about the Aurora renewal?" |
|
The same tools and the same token rules apply whether a person is driving the session or an
agent runs on its own after a task. Private Drive needs
STIGMERGY_GOOGLE_CLIENT_SECRETS=/absolute/path/google-oauth-client.json.
From Slack
Ask:
@brain what is the status of the Borealis rollout?in a mapped channel. If you can see more than the channel, the extra follows up privately.Capture: react with
:brain:on a thread. Speakers, timestamps, permalinks, and attachments become one capture under the channel's audience. Unmapped channels and unauthorized reactors capture nothing.
Channels map to audiences in ops/slack-channels.json; the app manifest is
deploy/slack-app-manifest.json.
From the backoffice
/admin on the app process, enabled by STIGMERGY_ADMIN_TOKEN_HASH, one master identity.
View | |
Captures | paste, upload, public URL; provenance, extraction, retries, commit, change |
Changes | plain-language summary, per-path diff, exact Git patch on demand |
Contradictions | live list from current Markdown, resolution form |
Entities | scoped claims and provenance, evidence-backed merge and delete |
Gardener | run history and a manual trigger |
Index health | repository HEAD vs indexed commit, dirty flag, last full rebuild |
MCP tools
The cloud server and the local bridge expose the same surface:
Tool | |
| hybrid lexical + vector search |
| one visible page with links and citations |
| a cited, verified answer — or an honest refusal |
| identities with a name you may see |
| knowledge composed from visible pages |
| capture one input; the optional contradiction ID is master-only |
| capture progress |
| explicit deletion with reference sweep |
There is no kind. path and private Drive exist only in the bridge. An omitted audience uses
your configured default, never organization-wide by accident.
Visibility and security
Every identity — whoever or whatever holds the token — has groups and a default audience in the knowledge repository's
ops/identities.json; a page'saclisnullor a list of groups.brain-adminsis unrestricted.One policy for reads and writes:
server.acl.visible,kernel.acl.flows_into, and the write guard. A restricted capture gets a restricted companion page; open pages are never rewritten from narrower evidence.Unknown, hidden, and unauthorized pages, entities, and captures look identical from outside.
Per-user bearer tokens from
stigmergy-issue-token; the server keeps only SHA-256 hashes. The cloud never sees Google credentials; clients never see the object store.Captured content is data, never instructions. The answer verifier is pure code; adversarial tests keep it that way.
Public fetching blocks private and metadata destinations and revalidates every redirect. Parsers detect types from bytes and enforce size, page, and decompression limits.
Secrets, tokens, presigned URLs, bytes, and restricted titles never enter logs. CI runs
gitleaks.
Report vulnerabilities privately: SECURITY.md.
Models
One OPENROUTER_API_KEY, a closed allowlist in kernel.llm, same-model provider failover only,
no model fallback or direct alternate-provider credentials, zero-data
retention. Direct Anthropic, OpenAI, or Gemini credentials are rejected. The librarian's structured
plans are routed to a host verified to return tool-call arguments intact, with the hosts known to
corrupt them excluded from failover.
Purpose | Model |
filing and semantic repair |
|
cited answers |
|
embeddings |
|
OCR |
|
Query embeddings are bounded. A provider timeout degrades that request to ACL-scoped lexical ranking; indexing remains strict and never accepts an incomplete vector build. Serving connections — HTTP requests and the Slack adapter — bound every Postgres statement; workers and rebuilds keep the database default.
Quality and tests
The keyless suite — 1,100+ tests over real Postgres and Git, fake models, 75% coverage gate — is
the contract. Optional real-model evaluations run over a frozen corpus and append to
evals/history.ndjson. Latest run (2026-08-24):
Measure | Result | Bar |
Retrieval Recall@5 (15 questions, 9 ACL-filtered) | 1.00 | ≥ 0.80 |
Answer honesty | 1.00 | ≥ 0.90 |
Answer groundedness | 1.00 | ≥ 0.84 |
False-premise refutation | 1.00 | — |
make retrieval-golden EMBEDDER=openrouter
make qa-golden EMBEDDER=openrouter LLM=openrouter
make gatesQuick start
Python 3.12+, uv, Docker.
git clone https://github.com/sturlese/stigmergy.git && cd stigmergy
make venv
make db-up # Postgres + pgvector, MinIO
make test
make lintIndex a knowledge repository and serve it over stdio:
export STIGMERGY_INDEX_DSN=postgresql://stigmergy:stigmergy@localhost:54321/stigmergy
stigmergy-index --rebuild --repo ../stigmergy-brain --embedder fake
stigmergy-server --transport stdio --repo ../stigmergy-brain \
--identity you@example.com --embedder fakeDeployment
One image, three Fly process groups:
Process | Command | Role |
|
| MCP over HTTP, uploads, index webhook, backoffice |
|
| the only writer and the scheduled gardener |
|
| Socket Mode adapter, one active instance |
make deploy-staging
make rebuild-stagingArea | Variables |
Models |
|
Database |
|
Evidence store |
|
Server |
|
Backoffice |
|
Writer |
|
Index webhook |
|
Slack |
|
Your team's knowledge is a separate private repository:
your-brain/
├── sources/YYYY/MM/<capture-id>.md
├── wiki/
│ ├── notes/
│ ├── concepts/
│ └── entities/ent_<uuid>.md
├── ops/
│ ├── identities.json people, groups, default audience
│ ├── slack-channels.json channel id → audience
│ └── entity-registry.json derived, written by the platform
├── .claude/skills/librarian/SKILL.md
└── .github/workflows/ nightly index rebuildOnly the writer's GitHub App identity commits to wiki/, sources/, and the registry. Runbook:
docs/OPERATIONS.md; reset: docs/RESET.md.
Repository layout
Package | |
| ACL flow, deadlines, the model boundary, normalization |
| envelopes, evidence, uploads, extraction and OCR, queue, sources |
| the local stdio MCP client |
| page contracts, |
| opaque identities, claims, registry, merge, rename, delete |
| exact patches and the change ledger |
| corpus selection, ranking, incremental updates, full rebuild, health |
| MCP tools, HTTP transport, webhook, verified answers |
| Socket Mode adapter |
| the master backoffice |
| the writer process, bootstrap, Git and GitHub App transport, schedule |
| the guarded non-production reset |
Design principles
Git and Markdown are current knowledge; Postgres is a rebuildable index.
Every adapter produces the same kind-free
CaptureEnvelope.Original bytes and source pages are immutable except through explicit deletion.
One serialized writer: one commit and one change record per operation.
Visibility is a write constraint.
The librarian owns notes and concepts; entity pages hold identity only.
No write waits for a human. Uncertainty is represented honestly.
A health finding is preventable or autonomously repairable, or it is not a finding.
Every capability is reachable through Slack, MCP, or the backoffice.
Rationale and acceptance criteria: specs/karpathy-team-wiki.md.
Documentation
Apache License 2.0.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
One memory, every AI. A shared, user-owned markdown memory your AI clients read and write over MCP.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
An MCP server that gives your AI access to the source code and docs of all public github repos
A MCP server built for developers enabling Git based project management with project and personal…
Related MCP Servers
- AlicenseAqualityAmaintenanceA self-hosted MCP server that gives AI agents shared, long-term memory over a git-backed folder of markdown, enabling persistent knowledge search, read, and write without a database.162111MIT
- AlicenseNot gradedqualityBmaintenanceMCP server that gives AI coding agents a git-backed markdown wiki to read and update, enabling search, read, write, verify, ingest, promote, and lint operations on versioned knowledge documents with schema validation, staleness tracking, and contradiction detection.3MIT
- AlicenseNot gradedqualityAmaintenanceAn MCP server that enables verified agents to retrieve from, propose changes to, and share capabilities around a human-owned Markdown/Git knowledge base, ensuring curation, exact-byte approval, and Git-based promotion.MIT
- AlicenseNot gradedqualityAmaintenanceMCP server that enables AI agents to search, fetch, and analyze a self-maintaining markdown knowledge base with provenance, drift detection, and canonical definitions.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sturlese/stigmergy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server