Metadata-Version: 2.4
Name: mintmory
Version: 0.1.0
Summary: MintMory — typed memory for LLM agents. Umbrella package: CLI + core, extras for the MCP server and REST API.
Project-URL: Homepage, https://github.com/WeLikeCode/mint-mory
Project-URL: Repository, https://github.com/WeLikeCode/mint-mory
Project-URL: Issues, https://github.com/WeLikeCode/mint-mory/issues
Author: WeLikeCode
License-Expression: MIT
License-File: LICENSE
Keywords: agents,llm,mcp,memory,sqlite,vector-search
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Requires-Dist: mintmory-cli~=0.1.0
Provides-Extra: all
Requires-Dist: mintmory-api~=0.1.0; extra == 'all'
Requires-Dist: mintmory-mcp~=0.1.0; extra == 'all'
Provides-Extra: anthropic
Requires-Dist: mintmory-core[anthropic]~=0.1.0; extra == 'anthropic'
Provides-Extra: api
Requires-Dist: mintmory-api~=0.1.0; extra == 'api'
Provides-Extra: cochange
Requires-Dist: mintmory-core[cochange]~=0.1.0; extra == 'cochange'
Provides-Extra: docs
Requires-Dist: mintmory-core[docs]~=0.1.0; extra == 'docs'
Provides-Extra: image
Requires-Dist: mintmory-core[image]~=0.1.0; extra == 'image'
Provides-Extra: local
Requires-Dist: mintmory-core[local]~=0.1.0; extra == 'local'
Provides-Extra: mcp
Requires-Dist: mintmory-mcp~=0.1.0; extra == 'mcp'
Provides-Extra: ocr
Requires-Dist: mintmory-core[ocr]~=0.1.0; extra == 'ocr'
Provides-Extra: openai
Requires-Dist: mintmory-core[openai]~=0.1.0; extra == 'openai'
Provides-Extra: otel
Requires-Dist: mintmory-core[otel]~=0.1.0; extra == 'otel'
Provides-Extra: postgres
Requires-Dist: mintmory-core[postgres]~=0.1.0; extra == 'postgres'
Description-Content-Type: text/markdown

# MintMory

Typed memory for LLM agents: 8 memory categories, typed concept links, hybrid
FTS5 + vector search, dream-state consolidation — on SQLite (default) or
Postgres. Ships a CLI, an MCP server, and a REST API.

```bash
pip install mintmory          # CLI + core
pip install "mintmory[mcp]"   # + MCP server (mintmory-mcp)
pip install "mintmory[api]"   # + REST API (mintmory-api)
pip install "mintmory[all]"   # everything above
```

Optional capability extras (forwarded to `mintmory-core`): `local`
(sentence-transformers embeddings, pulls PyTorch), `openai`, `anthropic`,
`docs` (PDF/DOCX/… ingestion), `otel`, `image`, `ocr`, `cochange`,
`postgres`.

Docs, source, and issue tracker: <https://github.com/WeLikeCode/mint-mory>.
MIT licensed.
