kumbuka
OfficialClick 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., "@kumbukaRemember that service names are always kebab-case."
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.
kumbuka
Shared, persistent memory for AI assistants working with a team — served over MCP, curated through an admin console, with a private space that stays private.
Status: pre-beta. kumbuka is in active development. The architecture and data model are settled and the private-memory guarantee is a hard design constraint, but the project is not yet a hardened, shipped product. Expect rough edges and breaking changes.
kumbuka is Swahili — the imperative "remember!". The project lives at kumbuka.ai.
The problem: the context tax
AI assistants are stateless between sessions. A team using them pays the same toll over and over — re-explaining the things that should simply be known:
"We use Postgres as the system of record."
"Money is integer minor units, never floats."
"Service names are kebab-case."
That steering knowledge — the decisions, conventions, and constraints that shape how an assistant should work — is exactly what an assistant ought to remember and apply without being told again. Today it lives in people's heads and in scattered chat history, so every new session starts from zero.
Related MCP server: LedgerMem MCP Server
What kumbuka is
kumbuka makes that knowledge a first-class, team-owned asset. It gives a team a durable, shared place for the rules an assistant should carry across conversations, and serves them to any MCP-capable assistant (Claude and others) over a remote MCP server. A web admin console lets the team curate the shared memory.
It is deliberately not a document store or a RAG index. kumbuka holds work-steering knowledge — a small, typed set of decisions, conventions, constraints, definitions, open questions, and status — not a copy of your docs or source, which stay in their own systems.
Shared and curatable — the team sees and edits what the assistant relies on, instead of each person accumulating an opaque, divergent context.
Portable — any MCP-capable assistant reads and writes it through one endpoint.
Bounded — a fixed taxonomy and explicit scopes keep the memory legible rather than letting it sprawl.
The private-memory guarantee
A member's private memory is theirs alone. It is reachable only by them, only over their own authenticated MCP session. No admin, no console screen, and no team-facing API can read it.
This is the backbone of the product, not a feature flag. It is enforced at the data-access layer — the privileged (admin/console) code paths have no route that can return private rows — not by a configuration toggle that could be flipped. Disabling a member suspends their account but leaves their private memory untouched and theirs.
See the Security & privacy guide for how this is structurally enforced.
Quickstart (self-host the Community Edition)
The Community Edition is the free, self-hosted, single-tenant memory core. It
runs as a single Docker Compose stack (backend · PostgreSQL · Keycloak · Caddy).
The deployable stack lives in the
kumbuka-server repository:
git clone https://github.com/kumbuka-ai/kumbuka-server
cd kumbuka-server
cp .env.example .env # set your domain + secrets
docker compose --profile app up -d # backend + postgres + keycloak + caddyThe admin console is a separate service, added to the same stack via a small
compose.override.yml — see the step-by-step
Quickstart guide, which also covers prerequisites,
first run, and the kumbuka-server runbook
for production deployment.
Connect your assistant
kumbuka is reached by AI clients as a custom MCP connector — the endpoint URL is all a client needs; there is no client id and no client secret. In claude.ai you add it under Settings → Connectors, sign in once through the OAuth flow, and your assistant can then call the memory tools on your behalf, including your own private scope.
See Connecting an assistant guide for
the walkthrough, and the
kumbuka-server guide
for Claude Desktop, Claude Code, and Claude Mobile.
MCP tools at a glance
Served over Streamable HTTP at /mcp, scoped to the authenticated user. The
tool names are kept functional on purpose — the model reads them, and clarity
beats brand noise.
Tool | What it does |
| Write or append an entry (upsert on |
| Read entries with filters: |
| Remove an entry by |
| List the scopes the caller may see (their private scope plus shared ones). |
| A typed, ready-to-inject digest of the relevant rules, grouped by type. |
Full reference: MCP tools reference.
Architecture
A single Docker Compose stack. The Quarkus / Java 21 backend is the only
component that talks to the identity provider; it serves both the /mcp surface
and the admin REST API. Keycloak (headless, OAuth 2.1) is the IdP; the
console is a BFF client and never holds tokens. PostgreSQL is the system
of record (Flyway migrations). Caddy is the edge.
flowchart TD
subgraph clients[AI clients]
A["claude.ai · Desktop · Code · Mobile"]
end
B[Browser · admin console]
A -- "OAuth 2.1 + bearer token" --> E
B --> E
E[Caddy edge]
E -- "/mcp (Streamable HTTP)" --> S
E -- "/api/* (admin REST)" --> S
E -- "/ (console UI)" --> N
E -- "/auth/* (redirect)" --> K
S["Quarkus backend<br/>resource server + BFF"]
N["Next.js admin console<br/>(BFF client, no tokens)"]
K["Keycloak<br/>(headless, OAuth 2.1)"]
P["PostgreSQL<br/>(system of record)"]
N -- "session cookie" --> S
S -- "OIDC: bearer + confidential" --> K
S -- "JDBC + Flyway" --> PThe backend plays two OIDC roles: a bearer resource server for /mcp,
and a confidential web-app client (BFF) for the console. Details and the
data flow are in Architecture guide.
Repo map
Repo | What it is |
This repo — the project front door and public documentation. | |
The Quarkus backend, the MCP surface, Keycloak realm/theme, and the Docker Compose stack you deploy. | |
The Next.js admin console (the team-facing UI). |
Documentation
The full documentation site lives at docs.kumbuka.ai (English and German).
Guide | For |
What kumbuka is and the personal/shared boundary. | |
The domain model: scopes, the entry taxonomy, authorship, keys. | |
Self-hosting the Community Edition, step by step. | |
Adding the connector in claude.ai. | |
Reference for the five | |
Topology, the two OIDC roles, components, data flow. | |
The private guarantee, structurally enforced; disable vs. erasure. | |
Env/config knobs and policies. | |
Community Edition vs. the commercial path. |
License
kumbuka is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). Because kumbuka is typically deployed as a network-accessible service, AGPL §13 applies: if you run a modified version and let users interact with it over a network, you must offer those users the corresponding source of your modified version.
A commercial dual-license path is planned for organizations that cannot operate under the AGPL or that want the commercial-edition features (see Editions). It is not yet generally available — no prices or dates yet.
Contributing
Contributions are welcome. Start with CONTRIBUTING.md for how to contribute and where the per-repo dev setup lives. To report a security issue, see SECURITY.md — please do not open a public issue for vulnerabilities.
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
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
Shared memory for all your AI agents, your whole team and every MCP client — save, search, recall.
Persistent personal memory for AI assistants — save, search, and recall across every MCP client.
Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.
Related MCP Servers
- AlicenseAqualityDmaintenancePersistent memory for AI agents. Store, recall, and share knowledge across sessions with five MCP tools: remember, recall, context, forget, and share. Includes semantic search and agent/user/org scoping.53Apache 2.0

LedgerMem MCP Serverofficial
AlicenseNot gradedqualityBmaintenanceEnables persistent memory storage and retrieval for MCP clients, allowing AI assistants to remember facts and context across conversations.14MIT- AlicenseNot gradedqualityBmaintenanceProvides long-term memory for AI agents via MCP tools to store, recall, and delete memories, with per-user scoping and usage limits.AGPL 3.0
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to have persistent long-term memory by automatically storing and retrieving important information via MCP tools.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/Kumbuka-ai/kumbuka'
If you have feedback or need assistance with the MCP directory API, please join our Discord server