khwan-mcp
Durable memory that survives the session. An MCP server that plugs Khwan — a pure AI-memory layer — into Claude Code, Claude Desktop, or any MCP client.
Khwan never runs a model. The client is the model. Its job is to persist and distil what matters into a brain you can recall in a later session or seed a subagent with — a compact, bounded set of facts instead of a replayed transcript. One account can hold many isolated cores (brains), and — on paid plans — an isolated sub-brain per end-user.
How it saves tokens (and where it doesn't)
Be honest about the mechanism — an MCP adds to a host's context, it cannot replace the transcript the host already sends. So:
- Within one hot session, it does not save tokens. Claude Code caches its growing history (cache reads ≈ 0.1×), so re-injecting memory every turn only adds. Don't do that here.
- Across sessions and subagents, it does. A cache dies in minutes; a session ends. Khwan persists distilled facts so the next run recalls them cheaply — no cold-replay of an old transcript, and facts that already scrolled out of context are retrievable again.
The token-smart pattern: seed once, remember durable facts (below), rather
than running the full loop on every turn of a caching host. The full
prepare → record loop still shines in a custom agent on a non-caching host,
where replacing history with distilled memory bounds per-turn cost directly.
Install
pip install khwan-mcp # or: uvx khwan-mcp
Connect to Claude Code
claude mcp add khwan \
-e KHWAN_API_KEY=kwk_live_xxx \
-e KHWAN_CORE=default \
-- khwan-mcp
Recommended pattern (token-smart)
On a caching host like Claude Code, prefer seed + remember over the per-turn loop:
- Seed at the start of a session or subagent:
"Call
khwan_recall(query="<the task>")and use the returnedseed_textas context." - Remember durable facts as they emerge:
"That's a standing decision — call
khwan_remember(fact="…")."
Reinforce it in your project's CLAUDE.md, e.g.:
- At the start of a task, call `khwan_recall` to seed relevant memory.
- When a durable decision/preference/fact emerges, call `khwan_remember`.
- Don't call prepare/record every turn — it adds tokens without saving them here.
Seeding a subagent is where the win is clearest — hand it a bounded brief instead of the whole transcript:
"Recall deploy memory with
khwan_recall(query="deploy runbook"), then spawn a subagent whose brief is thatseed_textplus the task."
Connect to Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"khwan": {
"command": "khwan-mcp",
"env": {
"KHWAN_API_KEY": "kwk_live_xxx",
"KHWAN_CORE": "default"
}
}
}
}
Configuration (environment)
| Var | Required | Purpose |
|---|---|---|
KHWAN_API_KEY |
yes | Your key from the Khwan dashboard (kwk_live_…). |
KHWAN_CORE |
no | Select an isolated core/brain (default: the account's default core). |
KHWAN_USER |
no | Isolated sub-brain per end-user (paid); sets X-Khwan-User. |
KHWAN_BASE_URL |
no | Override the API base — e.g. http://127.0.0.1:8010 for a local engine. |
Tools
| Tool | When |
|---|---|
khwan_recall(query, limit=8) |
seed a session/subagent — compact relevant facts + seed_text. |
khwan_remember(fact) |
persist a durable fact/preference for future sessions. |
khwan_prepare(input) |
full loop, before answering — memory context + a turn_token. |
khwan_record(turn_token, answer) |
full loop, after answering — persists the turn so Khwan learns. |
khwan_memory(limit=20) |
inspect what the brain currently remembers. |
khwan_cores() |
list the isolated cores on the account. |
khwan_recall / khwan_remember are the token-smart pair for a caching host;
khwan_prepare / khwan_record are the full loop for custom agents (pass the
exact turn_token from prepare back into record).
Always-on memory (Claude Code hooks)
The tools above are called when Claude decides to. For deterministic memory
— no reliance on the model — use the hook preset in
examples/claude-code-hooks/: a UserPromptSubmit
hook injects memory on every prompt and a Stop hook records every answer.
⚠️ On a caching host this is the thorough option, not the cheap one — it adds per-turn tokens. Prefer it when recall reliability matters more than token cost (or on a non-caching client); otherwise use
khwan_recallat session start.
License
Proprietary — © Khwan Labs.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file khwan_mcp-0.2.0.tar.gz.
File metadata
- Download URL: khwan_mcp-0.2.0.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22ea8a244c3d8561f97521098f82691a571f99d8d343e83f668078a16e36b848
|
|
| MD5 |
f314a70cc52a107c4c288e2b43c76c70
|
|
| BLAKE2b-256 |
be646220912be7abf22e4fe9f39806cb1cea20fff0362d7a5a614084bec4df68
|
File details
Details for the file khwan_mcp-0.2.0-py3-none-any.whl.
File metadata
- Download URL: khwan_mcp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b295910df030fad840e6d07c77e699032e8b78e1e8d071784f54954c7698661
|
|
| MD5 |
083f9125882f72667f31957e69530254
|
|
| BLAKE2b-256 |
3237d7a218f4e0f0faa5bf6313bc2f325f582da7e8f872aef8895350818900d1
|