Metadata-Version: 2.4
Name: verbative-memory
Version: 1.0.0
Summary: On-device memory system for AI coding agents — dual-layer engine (distilled facts + lossless event ledger), automatically captured and injected, exposed over MCP. Shared across agents, persistent across sessions; files in your repo.
Author-email: Verbative <info@verbative.de>
License: Proprietary — requires a Verbative subscription (free trial available); see https://verbative.de/legal/terms
Project-URL: Homepage, https://verbative.de/memory
Project-URL: Documentation, https://verbative.de/docs/memory
Keywords: mcp,memory,ai,agents,claude,local-first
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: MacOS
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.24
Dynamic: license-file

# verbative-memory

On-device memory system for AI coding agents — a dual-layer engine (distilled facts + a
lossless event ledger), automatically captured and injected, exposed over MCP. Shared across
agents, persistent across sessions; stored as human-readable files in your repo. No memory
cloud, no vendor database.

## Install (any MCP client)

Claude Code CLI:

```bash
claude mcp add verbative-memory -- npx -y verbative-memory
```

Cursor / Windsurf / Gemini CLI (`mcp.json` style):

```json
{ "mcpServers": { "verbative-memory": { "command": "npx", "args": ["-y", "verbative-memory"] } } }
```

VS Code (Copilot MCP):

```json
{
  "servers": {
    "verbative-memory": { "type": "stdio", "command": "npx", "args": ["-y", "verbative-memory"] }
  }
}
```

First run downloads the on-device engine + models (~4 GB, one time). After
that: zero network. Tools exposed: `remember`, `search`, `list`, `pin`,
`forget`, `edit_core`, `feedback`, and more.

Benchmarked on LongMemEval (retrieval protocol) — see
https://verbative.de/memory for current numbers.

Part of [Verbative](https://verbative.de) — hands-free, multi-agent building
with the Claude Code CLI.
