saripati
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., "@saripatiRecall my last session's next steps"
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.
SARIPATI
A local-first, provider-agnostic knowledge vault for any AI host.
sari pati (Malay) — the essence, the concentrated extract.
Most AI tools start every conversation cold. SARIPATI is the memory layer that sits underneath whatever AI you already use — Claude Code, Cursor, Windsurf, Cline, Continue — and lets knowledge compound across sessions. The AI researches with its own tools; you call SARIPATI to distill and store the essence. Weeks later, it recalls it semantically.
It is not a chat app. It runs no LLM and needs no API keys. Your entire knowledge base is a single SQLite file on your own machine.
Why
Compounding, not disposable. Research done in a session persists and accumulates by topic — the corpus grows every time the agent runs, not only when you take notes.
Semantic recall, local. Bundled embeddings (all-MiniLM-L6-v2) power hybrid semantic + keyword search entirely on-device.
A steerer, not just a store. The agent gets signal, not just recall: proactive nudges at session start (open questions, live intentions, unread memos, stale projects), per-kind priority, and conflict detection — every save is checked against the corpus so contradictions surface instead of piling up as equal "truth."
Knows who it serves. An optional identity + AI-companion persona loads at session start, so any host can adopt the right voice and address you correctly.
Visible. A launch-on-demand dashboard makes the growing knowledge base browsable, searchable, and (opt-in) editable.
Zero lock-in. Local SQLite, MIT-licensed, no cloud account, no vendor.
Related MCP server: Memory MCP
Non-goals
Not a chat app or LLM wrapper — it does not run or require an LLM.
No cloud dependency required.
Not tied to any single AI host or provider.
Install
npx saripati setup # create the vault, print the config, detect your host
npx saripati setup ./setup.md # also load your identity from a template file
npx saripati setup ./setup.md --write # also register SARIPATI with detected hostsGrab setup.md from this repo, fill in the four identity fields at the top,
and point setup at it. Then your host connects by package name — no folder path:
{
"mcpServers": {
"saripati": { "command": "npx", "args": ["-y", "saripati", "mcp"] }
}
}Restart your AI host. The first vault call downloads the ~90 MB embedding model once
(with a progress heartbeat), then works offline forever.
The tools (9)
Tool | What it does — and when to call it |
| Start of every session, unprompted. Loads identity, last session, recent entries, active projects, and |
| Session end. Write the digest + next steps yourself. |
| The one door to knowledge. Pass |
| Resolve a flagged conflict: supersede, relink, lower confidence, resolve a question, close an intention. |
| A map of what already exists — counts, top tags, per-project last activity. |
| A lightweight project registry (metadata merges). |
| Return the vault owner's identity + companion persona. |
| Create/update identity + tuning ( |
A typical flow: on at session start → the AI researches with its own tools → vault save
→ (conflict? entry_update) → next week vault recall → off at the end.
The Steerer model
Entries carry a kind and a lifecycle, so recall returns signal, not noise.
Kinds:
research·note·decision·pattern·question·memo·intention. Questions trackresolved; intentions trackactive; memos are the agent's notes to its future self and surface first aton.Status:
active·superseded·archived. Superseded/archived entries drop out of default recall (passinclude_supersededto see them) — old decisions stop being cited as current truth.Priority: a per-kind boost (memo > question > decision/intention > pattern > research/ note), tunable per vault via
identity_set({ companion_config: { recall_boost: … } }).Conflict detection: after every save,
vaultruns a narrow similarity check and returns near-duplicate or contradicting entries so the agent canentry_updatethem.
Identity — who the vault serves
setup reads a small YAML frontmatter from setup.md:
---
name: Your Name
field: Software Engineering
skills: [supabase, next.js, laravel]
language: English
companion: librarian # plain | librarian | research-assistant
---It is stored in a singleton identity row. From then on on and whoami hand your host
that context at session start, so it adopts the right voice and addresses you correctly.
Set a focus with identity_set({ user_prefs: { focus: "project-name" } }) and on biases
recent entries toward it.
The dashboard
npx saripati ui # http://localhost:4319 — read-only by default
npx saripati ui --write # enable in-browser tag/kind edits
npx saripati ui --no-semantic # FTS only — faster cold start, no model load
npx saripati ui --port 8080 # custom portA local browser UI built on Preact 10 + HTM (no CDN, no bundler — vendored ESM served at
/vendor/*.js). Five tabs — Steer opens by default:
Tab | What it shows |
Steer | Live nudge console: open questions · active intentions · unread memos · stale projects. Retrieval trace (last |
Entries | Hybrid search · 7 kind chips · status chips (active / superseded / archived) · |
Graph | Physics force-graph over derived links. Up to 150 nodes; ubiquitous tags (appearing on >25 % of nodes) are excluded from edges so only meaningful connections appear. Scroll to zoom, drag canvas to pan, drag nodes to reposition. Camera persists after the initial auto-fit — use the reset button to re-fit. |
Tags | Tag cloud and frequency. |
Identity | Profile · companion config (stale_days, conflict_threshold, per-kind recall boosts) · session history. |
Editing is off by default — pass --write to enable mutations (kind, tags, status, resolved, active).
How it works
AI host (its own web tools) ──stdio/MCP──▶ saripati mcp
│
embed (MiniLM 384d) ─────────┤
hybrid search (vec ∪ FTS5) ──┤
per-kind boost + status ─────┤
▼
~/.saripati/vault.db (SQLite)
▲
saripati ui ────┘ (read-only dashboard)Storage: SQLite via
better-sqlite3, versioned with aPRAGMA user_versionmigration runner — existing vaults upgrade in place on open.Vectors:
sqlite-vec(vec0) — embeddings are L2-normalized so KNN ranks like cosine.Keyword: SQLite FTS5. Fusion: Reciprocal Rank Fusion combines the two rankings.
Embeddings:
@xenova/transformersrunning all-MiniLM-L6-v2 in-process.Terminal voice: a small zero-dep presentation layer (
src/term/theme.ts) that degrades to plain ASCII off-TTY and never touches the JSON-RPC channel (banners go to stderr).
Data lives in ~/.saripati/ by default (override with SARIPATI_HOME or SARIPATI_DB).
Develop
npm install
npm run build # tsc → dist/ (+ vendored UI bundles)
npm test # end-to-end smoke test
npm run dev -- mcp # run from source via tsxLicense
MIT © Kyou
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
- AlicenseNot gradedqualityCmaintenanceProvides local vector-based semantic memory storage for AI assistants to persist context and decisions across sessions using local embeddings and LanceDB. It enables private semantic search and session handoff capabilities to maintain long-term project context.705MIT
- FlicenseNot gradedqualityDmaintenanceProvides persistent AI agent memory using a local vector database for long-term semantic storage and short-term session scratchpads. It enables low-latency memory operations including search, storage, and bulk management without external cloud dependencies.
- AlicenseAqualityDmaintenanceGives any AI tool persistent, searchable memory across sessions using hybrid semantic and keyword search, running 100% locally with no API keys or cloud dependencies.61MIT
- AlicenseNot gradedqualityCmaintenanceProvides AI assistants with persistent memory across sessions using local SQLite and keyword search, allowing storage and retrieval of user preferences, project context, and decisions.128MIT
Related MCP Connectors
Persistent memory for AI agents. Search, store, and recall across sessions.
Long-term memory for AI assistants. Hybrid retrieval, query expansion, auto-topics.
Persistent memory and knowledge management for AI agents with semantic search and 50+ 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/kyouscireul/saripati'
If you have feedback or need assistance with the MCP directory API, please join our Discord server