Metadata-Version: 2.4
Name: rekal
Version: 0.0.3
Summary: Long-term memory MCP server for LLMs — hybrid search in a single SQLite file
Author: Jan Bjorge
License-Expression: MIT
License-File: LICENSE
Keywords: llm,mcp,memory,sqlite,vector-search
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.14
Requires-Dist: aiosqlite>=0.20.0
Requires-Dist: fastembed>=0.4.0
Requires-Dist: mcp[cli]>=1.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: sqlite-vec>=0.1.6
Description-Content-Type: text/markdown

# rekal

Long-term memory MCP server for LLMs. Hybrid search (FTS5 + vector + recency) in a single SQLite file.

## Install

```bash
pip install rekal
```

## Usage

Add to your MCP client config:

```json
{
  "mcpServers": {
    "rekal": {
      "command": "rekal"
    }
  }
}
```

## CLI

```bash
rekal serve    # Run as MCP server (default)
rekal health   # Show database health report
rekal export   # Export all memories as JSON
```
