{
  "markdown": "<!-- mcp-name: io.github.Cloto-dev/cpersona -->\n\n<div align=\"center\">\n\n# CPersona\n\n### MCP Memory Server\n\nPersistent memory for AI agents, over MCP.\nOne SQLite file you own. No LLM in the loop. Honest when recall degrades.\n\n[![PyPI](https://img.shields.io/pypi/v/cpersona)](https://pypi.org/project/cpersona/) [![CI](https://github.com/Cloto-dev/cpersona/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/Cloto-dev/cpersona/actions/workflows/ci.yml) [![Python](https://img.shields.io/badge/python-3.11+-blue.svg)](https://github.com/Cloto-dev/cpersona/blob/master/pyproject.toml) [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/Cloto-dev/cpersona/blob/master/LICENSE) [![Sponsor](https://img.shields.io/badge/sponsor-Cloto--dev-ea4aaa?logo=githubsponsors&logoColor=white)](https://github.com/sponsors/Cloto-dev)\n\n[Documentation](https://cloto-dev.github.io/CPersona/) · [Getting Started](https://cloto-dev.github.io/CPersona/getting-started/) · [Architecture](https://cloto-dev.github.io/CPersona/architecture/) · [Tools](https://cloto-dev.github.io/CPersona/tools/) · [PyPI](https://pypi.org/project/cpersona/) · [Zenn Book (JP)](https://zenn.dev/cloto/books/claude-memory-mcp-server)\n\n</div>\n\n---\n\n> **Standalone repository** — This is the standalone version for use with Claude Desktop, Claude Code, Codex CLI, Cursor, VS Code, and any other MCP client ([registration table](https://cloto-dev.github.io/CPersona/getting-started/#3-register-cpersona-with-your-mcp-client)).\n> If you are a [ClotoCore](https://github.com/Cloto-dev/ClotoCore) user, install CPersona from the in-app marketplace ([ClotoHub](https://hub.cloto.dev)) instead — it distributes this same repository.\n\n> **Project status** — **2.4.x is Stable**; **2.5.x is Current**, an internal\n> stabilization line where all fixes land, pending production-soak\n> certification. The DB schema is preserved across the line. Additive,\n> rollback-safe features may land here as well ([lifecycle standard\n> §2.6](https://cloto-dev.github.io/CPersona/RELEASE_LIFECYCLE_STANDARD/#26-feature-releases-within-a-line));\n> a change that cannot be rolled back waits for 2.6. Which version to run, and\n> how long each line keeps receiving fixes:\n> [SUPPORT.md](https://github.com/Cloto-dev/cpersona/blob/master/SUPPORT.md).\n> Where the lines are heading: the [roadmap](https://cloto-dev.github.io/CPersona/roadmap/).\n\n> **Upgrading from 2.5.2 or earlier?** Two things need a decision from you.\n> **v2.5.3 will not start the HTTP transport without `CPERSONA_AUTH_TOKEN`**,\n> wherever it binds — set one, or opt out with\n> `CPERSONA_ALLOW_UNAUTHENTICATED_HTTP=true` ([why](https://github.com/Cloto-dev/cpersona/blob/master/SUPPORT.md#known-issues); stdio is unaffected).\n> **v2.5.2 changed tool response shapes** — branch on `ok is false`, and treat any\n> response carrying `error` as a failure whether or not `ok` is present\n> ([contract §10](https://cloto-dev.github.io/CPersona/behavior-contracts/#10-response-shapes-how-to-tell-success-from-failure)).\n\n## The Problem\n\nClaude forgets everything between sessions. Every conversation starts from zero — no context about your project, your preferences, or what you discussed yesterday.\n\ncpersona fixes this. It's an [MCP](https://modelcontextprotocol.io/) server that stores memories in a local SQLite file and retrieves them through hybrid search. Claude remembers you. It runs against any MCP-compatible host — [Claude Desktop](https://claude.ai/download), [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [ClotoCore](https://github.com/Cloto-dev/ClotoCore) (the AI agent platform where cpersona originated, and whose memory layer it is), or a client of your own.\n\n## Quick Start\n\n> **Claude Code? Let the agent do the setup.** The wheel ships an\n> [Agent Skill](https://github.com/Cloto-dev/cpersona/blob/master/skills/cpersona-memory/SKILL.md)\n> that installs everything *and* teaches Claude when to store, recall and\n> archive. Copy it in, then say *\"Set up CPersona.\"*\n>\n> ```bash\n> python -c \"import cpersona,pathlib,shutil; s=pathlib.Path(cpersona.__file__).parent/'skills'/'cpersona-memory'; shutil.copytree(s, pathlib.Path.home()/'.claude/skills/cpersona-memory', dirs_exist_ok=True)\"\n> ```\n\n**1. Install** — Python 3.11+, and [uv](https://docs.astral.sh/uv/) for the one-command path.\n\n```bash\nuvx cpersona          # run directly, no install step\npip install cpersona  # or install it\n```\n\n**2. Run an embedding server** — strongly recommended; it powers the vector layer\n\n```bash\nuvx --from \"cembedding[onnx]\" cembedding-download-model --model jina-v5-nano\nEMBEDDING_PROVIDER=onnx_jina_v5_nano uvx --from \"cembedding[onnx]\" cembedding   # serves http://127.0.0.1:8401/embed\n```\n\nAny endpoint implementing the [embedding contract](https://cloto-dev.github.io/CPersona/getting-started/#the-contract) works and is equally recommended; CEmbedding is the reference implementation. The choice of backend is yours — the recommendation is to connect one, not to connect that one.\n\n**Without a backend, cpersona still runs** — FTS5 + keyword search, and it says on every recall that it is degraded rather than quietly returning less. That is a supported fallback, not a recommended way to run: recall then matches on shared words, so a memory phrased differently from your question can be missed, and so can an older one.\n\n**3. Register it with your MCP client**\n\n```bash\nclaude mcp add-json cpersona '{\"type\":\"stdio\",\"command\":\"uvx\",\"args\":[\"cpersona\"],\"env\":{\"CPERSONA_DB_PATH\":\"/home/you/.claude/cpersona.db\",\"EMBEDDING_MODE\":\"http\",\"EMBEDDING_HTTP_URL\":\"http://127.0.0.1:8401/embed\"}}' -s user\n```\n\nThat's it. Ask Claude to `store` something and `recall` it in a later session.\n\nAt startup the server asks pypi.org whether a newer release exists and tells the\ncalling agent through `recall`; set `CPERSONA_UPDATE_CHECK=false` to turn that\noff. Updating is never automatic.\n\nClaude Desktop config, Windows paths, installing from source and the full\nwalkthrough: [Getting Started](https://cloto-dev.github.io/CPersona/getting-started/).\n\n## What You Get\n\n- **Hybrid search** — vector (the layer an embedding server powers), FTS5\n  (trigram, so it works on Japanese and other space-less scripts) and keyword,\n  fused by rank or relative score. The FTS and keyword layers rescue what vectors\n  miss: identifiers, error strings, exact names.\n- **Three memory types** — facts, session summaries and an accumulated profile.\n- **Zero LLM dependency** — cpersona never calls a generative model; your agent\n  summarizes and hands over the result. Recall is deterministic given a calibrated\n  gate, but the gate is sampled, so two installs on identical data can settle\n  differently.\n- **Single-file SQLite** — no external database; `sqlite3 .backup` copies the\n  corpus (the calibration sidecar beside it needs copying too).\n- **Operable** — auto-calibrated thresholds, a health check with auto-repair, an\n  advisory when the embedding layer dies, JSONL export/import, agent-to-agent merge.\n- **Isolation** — `agent_id`, `project_id` and `channel` let several agents and\n  projects share one database without bleeding into each other.\n\nHow it fits together: [Architecture](https://cloto-dev.github.io/CPersona/architecture/) ·\nwhat the tools do: [Tools](https://cloto-dev.github.io/CPersona/tools/) ·\nwhat you may rely on: [Behavior Contracts](https://cloto-dev.github.io/CPersona/behavior-contracts/).\n\n## Benchmarks\n\nMeasured on LMEB (Long-horizon Memory Embedding Benchmark, arXiv:2603.12572) — 22 datasets subsuming LoCoMo and LongMemEval, measured here as 22 retrieval tasks. The metric is Mean NDCG@10 across all 22 tasks. **Track A** is the raw embedding model alone; **Track B** routes the same embeddings through cpersona's real `store`/`recall` code paths (SQLite + FTS5 + RRF fusion + per-agent auto-calibration).\n\n| Embedding Model | Params | Dim | Track A (raw) | Track B (cpersona) | Δ |\n|---|---|---|---|---|---|\n| all-MiniLM-L6-v2 | 22M | 384 | 43.67 | **50.10** | +6.43 |\n| bge-m3 | 568M | 1024 | 56.83 | **57.66** | +0.83 |\n\nTrack B lands at or above Track A on both models: the fusion layers add signal rather than merely persisting vectors, and a weaker embedding gains more because the FTS5/keyword layers rescue what its vectors miss. How to read the deltas, the noise envelope, the measurement harness and the reproduction regime: [`benchmarks/`](https://github.com/Cloto-dev/cpersona/blob/master/benchmarks/README.md).\n\n## Documentation\n\n[**cloto-dev.github.io/CPersona**](https://cloto-dev.github.io/CPersona/) is canonical — when this README disagrees with it, the site wins.\n\n| | |\n|---|---|\n| [Getting Started](https://cloto-dev.github.io/CPersona/getting-started/) | Install, embedding server, client registration, verification |\n| [Behavior Contracts](https://cloto-dev.github.io/CPersona/behavior-contracts/) | What you may rely on: recall ordering, dedup, scan window, response shapes |\n| [Tools](https://cloto-dev.github.io/CPersona/tools/) | Every tool, grouped by what you reach for it for |\n| [Architecture](https://cloto-dev.github.io/CPersona/architecture/) | Storage, the retrieval pipeline, isolation axes |\n| [Roadmap](https://cloto-dev.github.io/CPersona/roadmap/) | What each release line is for and may break; planned retrieval features and the scale ladder |\n| [Operations Runbook](https://cloto-dev.github.io/CPersona/operations/) | Backup, degradation detection, tuning, CJK guidance, corpus sync |\n| [Configuration](https://cloto-dev.github.io/CPersona/configuration/) | Every environment variable and its default |\n| [Quality Assurance](https://cloto-dev.github.io/CPersona/quality-assurance/) | How a release is gated: audits, the bug ledger, structural and mutation gates |\n| [FAQ](https://cloto-dev.github.io/CPersona/faq/) | Short answers to the questions operators actually ask |\n\nJapanese translations are in the language selector (English is canonical) and\nagents can read [`llms.txt`](https://cloto-dev.github.io/CPersona/llms.txt).\nLonger reads in Japanese: a [book](https://zenn.dev/cloto/books/claude-memory-mcp-server)\non the design and setup, and an [article](https://zenn.dev/cloto/articles/claude-code-compact-external-memory)\non the token economics of session-end → `/clear` → `recall`.\n\n## Quality Assurance\n\nEvery release is gated by a machine-verifiable process: multi-agent audit rounds with adversarial verification, a [bug ledger](https://github.com/Cloto-dev/cpersona/blob/master/qa/issue-registry.json) that fails CI if a fix marker disappears or a removed defect returns, structural gates for invariants a plain test cannot express, a mutation proof that those gates go red when the invariant is broken, and gates holding the documented counts, defaults and version claims to the source that defines them.\n\nBehind it: **~1,862 test functions** across ~136 test modules (~2,370 cases parametrised, more test code than server code), on **Schema v13** — [how a release is gated](https://cloto-dev.github.io/CPersona/quality-assurance/).\n\n## Support\n\nThree tiers — **Stable** (production-certified, critical fixes only), **Current**\n(newest line, all fixes land here) and **Experimental** (opt-in pre-releases). A\nsuperseded line keeps critical-fix support for 30 more days. **Read\n[SUPPORT.md § Known issues](https://github.com/Cloto-dev/cpersona/blob/master/SUPPORT.md#known-issues)\nbefore pinning a version** — some of them change what you should run.\n\nFound a bug, or something the docs do not explain? Open a\n[bug report](https://github.com/Cloto-dev/cpersona/issues/new?template=bug_report.yml)\nor [feature request](https://github.com/Cloto-dev/cpersona/issues/new?template=feature_request.yml),\neven when you are not certain — a configuration problem mistaken for a bug means\nthe documentation was unclear, which is a defect of its own. Report security\nvulnerabilities privately via\n[SECURITY.md](https://github.com/Cloto-dev/cpersona/blob/master/SECURITY.md).\n\n## Sponsorship\n\nCPersona is MIT-licensed and stays fully usable whether or not anyone sponsors\nit. Sponsorship buys no feature, no release tier and no position in the issue\nqueue — issues are triaged by impact, reproducibility and safety, and that does\nnot change for anyone.\n\nIf CPersona has earned a place in your workflow and you would like the work to\ncontinue, you can [sponsor Cloto-dev on GitHub](https://github.com/sponsors/Cloto-dev).\nThe same page covers CPersona, ClotoCore and the other projects published\nunder that account; sponsorship goes toward development time, testing\nand infrastructure, documentation and maintenance.\n\nMoney is not the only thing that helps, and it is not the thing this project\nneeds most. Starring the repository, saying which part of the setup was\nconfusing, filing a reproducible issue, or correcting a sentence in the\ndocumentation all move it forward.\n\n## License\n\nMIT — free to use from any MCP host without restriction.\n",
  "bytes": 12976,
  "sha": "a2549d27ccd7801f0d302cb7b3e62d7bf17181ed21780990f84fc38d5ff024f6",
  "repo_slug": "cloto-dev/cpersona",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_cloto_dev_cpersona_a40e80a1/readme"
}