Brain
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., "@BrainRemember that we chose Postgres over MySQL for the database"
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.
Brain
Shared memory, multi-agent coordination, and infra judgement — native to Zerops.
Any MCP-compatible coding agent (Claude Code, Cursor, Codex) gets three things no single agent session has on its own:
Persistent shared memory — facts and decisions survive a session and are visible to every agent, not only the one that learned them.
Multi-agent coordination — a single-writer lock so two agents acting on the same Zerops project don't collide. Plus the Observatory, a live dashboard so coordination can be watched rather than taken on trust.
Why this and not ZCP
ZCP already does the end-to-end infra work, and does it well — its own docs describe the loop
as "the agent reads live state, chooses the app runtime and dependencies, changes the app,
deploys through Zerops, verifies real behavior, and returns proof or a blocker." The ZCP
container ships zcli and a Zerops MCP server, so anything inside it can already deploy,
scale and inspect the project. Brain does not reimplement any of that. An earlier draft of
this README promised an infra.provision / infra.deploy / infra.scale tool surface; that
was a duplicate of the toggle, and it was cut.
What ZCP does not have is the layer this builds, and Zerops' own product makes the gap concrete rather than theoretical:
No memory. The documented recovery from an interrupted session is "Chat history is not the source of truth… Read current project status and tell me where this project stands before changing anything." Live state tells an agent that Redis exists. It cannot tell it why Redis and not Valkey, or that Valkey was tried and rejected — the decisions and dead ends that are most expensive to re-derive.
No coordination between agents. The project-creation screen offers to install Claude
Code, Codex, Antigravity, Grok Build and Cursor CLI into the same ZCP container, and gives
them nothing to share memory with or to keep them off each other's work. Two agents in that
one container are strangers. Across projects it is stronger still: ZCP access is "sealed
inside the project's own VXLAN", so an agent in my-project-johnd and one in
my-project-janed are on different private networks and can only meet through a GitHub pull
request — which carries a diff, not the reasoning behind it.
Related MCP server: Memclaw
Built for The Zerops Challenge, Aug 8–9 2026
Prior work vs. work built during the event
The rules permit reusing code the builder already owns, provided it's clear which is which. So it is stated plainly, and checkably:
Prior work — four files from a previous personal project (Notch), kept verbatim in
prior-art/notch/ and excluded from the build so they can be diffed
against what replaced them:
file | lines | what it contributed |
| 99 | the single-writer coordination protocol |
| 275 | the append-only event-store pattern |
| 518 | memory as folded add/update/forget events |
| 365 | hybrid recall (entities ∪ BM25) |
1,257 lines of prior art. Nothing else was carried across. Notch is a ~20,000-line multi-agent orchestrator with six ADE adapters, a mobile app and a desktop shell; none of that is here, because none of it is Brain.
Built during the event — everything under src/, starting with the one change that
matters most:
prior-art/notch/baton.ts arbitrates its lock by reading a JSON file, checking the holder,
and writing it back. On one laptop that's fine — single writer, microsecond window. On Zerops
it's a real bug: the MCP service can run several containers behind a load balancer against one
Postgres, so two agents served by two containers can both read holder = NULL and both write
themselves in, and both get a success. src/core/lock.ts replaces it
with a single INSERT … ON CONFLICT DO UPDATE … WHERE, so Postgres decides under the row lock
it already takes. It also adds a TTL, because a dead container leaves a lock no human can
delete.
Status
This README will not claim a service is wired up before it is. Current state:
Repo, types, Postgres schema
src/core/lock.ts— atomic single-writer lock, ported and re-platformedMemory tools (
brain.remember/brain.recall) — Postgres + QdrantMCP server exposing the tool surface
Credential broker + Zerops REST client
Doctor
Observatory dashboard
Deployed live on Zerops — blocked, see below
Blocked on one credential
Nothing that touches the real Zerops API can be built or verified without a Zerops
account-level Personal Access Token (Zerops GUI → Access Token management). That gates
provisioning, deploying, scaling, doctor.audit, and the live URL the rules require.
It will be held only as a Zerops envSecret on the backend service, never committed, never
logged in full, and never handed to an agent — agents get short-lived scoped tickets and the
broker makes the call itself.
Until that token exists, this repo will not pretend otherwise: no mocked Zerops responses, no fake project ids, no simulated deploys.
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 Servers
- Alicense-qualityBmaintenanceA shared memory and coordination server for multiple AI coding agents, built on the Model Context Protocol (MCP).Last updated5MIT
- Alicense-qualityBmaintenanceGoverned shared memory platform for AI agents and agent fleets. Provides persistent memory, cross-agent knowledge sharing, permissions, audit trails, and multi-tenant isolation through a Model Context Protocol (MCP) server.Last updated4417Apache 2.0
- AlicenseBqualityBmaintenanceMulti-agent shared brain MCP server enabling cross-session memory, self-improving skill loops, and inter-agent signaling across Claude, Codex, Gemini, Copilot, and VS Code CLI agents.Last updated10010MIT
- Alicense-qualityBmaintenanceThe coordination layer for AI agent networks, providing persistent memory, task management, inter-agent messaging, and human oversight through native MCP tools.Last updated1701MIT
Related MCP Connectors
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
Shared long-term memory vault for AI agents with 20 MCP tools.
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/nickthelegend/notch-zerops'
If you have feedback or need assistance with the MCP directory API, please join our Discord server