snipara-memory
snipara-memory is an open source memory schema and local engine for
AI-assisted projects.
Memory belongs to the project, not the model.
Use it to model, store, recall, compact, archive, and review durable project memory without depending on Snipara Cloud.
Quickstart
# 1. Install
pip install snipara-memory
# 2. Use the local API
snipara-memory serve --port 8000
# 3. In another terminal, store and recall
curl -X POST http://127.0.0.1:8000/v1/namespaces/demo/memories \
-H "content-type: application/json" \
-d '{"title": "Auth convention", "content": "JWT auth uses RS256 token pairs."}'
curl -X POST http://127.0.0.1:8000/v1/namespaces/demo/memories/recall \
-H "content-type: application/json" \
-d '{"query": "How do we handle auth?"}'
Or use the Python API:
import asyncio
from snipara_memory import InMemoryMemoryStore, MemoryService, RecallQuery, StoreMemoryRequest
async def main():
store = InMemoryMemoryStore()
service = MemoryService(store=store)
await service.store_memory(StoreMemoryRequest(
namespace_id="demo",
content="JWT auth uses RS256 token pairs and refresh tokens.",
title="Auth convention",
))
matches = await service.semantic_recall(
RecallQuery(namespace_id="demo", query="How do we handle JWT auth?")
)
for match in matches:
print(f"{match.score:.2f}: {match.memory.title}")
asyncio.run(main())
Full docs below. Local continuity works out-of-the-box; import commands and MCP are optional.
What It Is
snipara-memory provides project-scoped memory primitives:
- memory object types
- lifecycle states
- source provenance
- authority metadata
- semantic recall requests
- contradiction records
- session warm-up bundles
- local API and MCP wrappers
It is not a generic vector database. It is the shared memory language for agents that need to remember what should keep mattering.
The Problem
Most agent memory systems are either transcript stores or embedding caches. They can retrieve old text, but they rarely answer the deeper workflow question:
What should a future agent trust, reuse, or revisit?
Durable project memory needs structure:
- decisions need authority and source context
- preferences need scope
- learnings need confidence
- stale memories need retirement
- conflicting memories need review
- session startup needs compact bundles
The Solution
snipara-memory gives those concepts a small, inspectable implementation.
Agent Session
|
v
Memory Extraction
|
v
Project-Scoped Memory Objects
|
+--> Recall
+--> Session Bundle
+--> Compaction
+--> Contradiction Review
+--> Archive / Graveyard
The package can run locally in tests, CLIs, prototypes, and MCP-compatible developer tools. Hosted Snipara builds on the same domain concepts with managed retrieval, review workflows, ranking, team controls, and production operations.
Architecture
Claude Code Cursor Codex OpenAI Agents
| | | |
+---------------+--------------+------------------+
|
Project Memory Interface
|
snipara-memory
|
Local Store / API / MCP Wrapper
|
Durable Project Context
Why This Is Different
Many tools stop at "store text, run semantic search".
snipara-memory focuses on the memory lifecycle:
- tiered retrieval:
CRITICAL,DAILY,ARCHIVE - lifecycle states:
ACTIVE,ARCHIVED,GRAVEYARD - scoped memory ownership
- contradiction detection and resolution
- graveyard restore instead of destructive deletes
- session bundles for agent warm-up
- importers for transcripts and project docs
- explicit memory identity for safe updates and supersession
- optional provenance-diverse recall with duplicate-evidence filtering
Transcript Store vs Durable Memory
| Need | Transcript-first memory | snipara-memory |
|---|---|---|
| Keep the original conversation | Strong | Not the main goal |
| Preserve durable decisions | Usually ad hoc | First-class |
| Scope memory to projects | Often weak | Built-in |
| Handle contradictions | Rare | Built-in |
| Archive without hard delete | Rare | Built-in graveyard |
| Warm up a new session | Manual | Session bundles |
| Model memory as typed objects | Limited | Built-in |
If your main problem is "search my old chats", a transcript store may be enough. If your main problem is "my agent should keep stable project memory", this package is the right layer.
Evolving memories and evidence diversity
An update should name the durable thing it replaces, not rely on a storage ID or append a second value forever:
await service.store_memory(StoreMemoryRequest(
namespace_id="demo",
content="The deployment target is production.",
memory_key="deployment.target",
supersedes_memory_key="deployment.target",
provenance_key="handoff-2026-08-21",
))
The previous observation is moved to the graveyard and remains restorable. When a context budget must cover several sources, ask recall for a broader candidate pool and opt into provenance diversity:
RecallQuery(
namespace_id="demo",
query="deployment target",
limit=8,
diversify_by_provenance=True,
max_per_provenance=2,
deduplicate_evidence=True,
)
When a fact is spread across several turns in the same source, opt into provenance context to bring sibling evidence along with the direct hit:
RecallQuery(
namespace_id="demo",
query="Where was the coupon redeemed?",
limit=8,
include_provenance_context=True,
provenance_context_limit=8,
)
Provenance context is bounded and opt-in: it preserves the compact-memory model while allowing a later turn to be resolved against an earlier turn from the same document, handoff, or conversation. Confidence remains an eligibility filter; it does not inflate relevance and cannot make unrelated memories outrank direct evidence.
These are generic memory primitives. A benchmark adapter may add query expansion, official prompts, or category-specific readers, but the lifecycle and evidence selection remain reusable by project-memory clients.
Install
pip install snipara-memory
For local development:
pip install -e ".[dev]"
Main CLI:
snipara-memory version
Local store path by default:
~/.snipara-memory/store.json
Python Quickstart
import asyncio
from snipara_memory import InMemoryMemoryStore, MemoryService, RecallQuery, StoreMemoryRequest
async def main() -> None:
store = InMemoryMemoryStore()
service = MemoryService(store=store)
await service.store_memory(
StoreMemoryRequest(
namespace_id="demo",
content="JWT auth uses RS256 token pairs and refresh tokens.",
title="Auth convention",
)
)
matches = await service.semantic_recall(
RecallQuery(namespace_id="demo", query="How do we handle JWT auth?")
)
for match in matches:
print(match.score, match.memory.title, match.memory.content)
asyncio.run(main())
Runnable example:
python examples/quickstart.py
Import a transcript:
snipara-memory import-transcript examples/transcript.txt --namespace demo
Import project documents:
snipara-memory import-project docs --namespace demo
Local API
Start the FastAPI server backed by the local JSON store:
snipara-memory serve --host 127.0.0.1 --port 8000
Health check:
curl http://127.0.0.1:8000/health
Store a memory:
curl -X POST http://127.0.0.1:8000/v1/namespaces/demo/memories \
-H "content-type: application/json" \
-d '{
"title": "Auth convention",
"content": "JWT auth uses RS256 token pairs and refresh tokens."
}'
Recall memory:
curl -X POST http://127.0.0.1:8000/v1/namespaces/demo/memories/recall \
-H "content-type: application/json" \
-d '{
"query": "How do we handle JWT auth?"
}'
Local MCP Server
Run the stdio MCP wrapper:
snipara-memory mcp
With an explicit store file:
snipara-memory mcp --store-path ./.snipara-memory.json
Current MCP tools:
memory_storememory_recallmemory_session_bundlememory_listmemory_detect_contradictionsmemory_resolve_contradictionmemory_import_transcriptmemory_import_project
See docs/mcp.md.
What Is Included
Version 0.1.x includes:
- standalone domain models
- memory service
- in-memory adapter
- JSON file store
- FastAPI app
- MCP stdio wrapper
- transcript and project-doc importers
- benchmark harness
- Prisma schema draft
- runnable examples
What Is Not Included
This repository does not try to clone Snipara Cloud.
Not included:
- hosted MCP transport
- SaaS auth and billing
- team dashboard
- review queues
- managed retrieval ranking
- enterprise analytics
- hosted automation policies
Those remain part of Snipara's commercial hosted product.
Open Core Boundary
Open source:
- memory schemas
- lifecycle primitives
- local storage interfaces
- import formats
- local API and MCP wrappers
- tests and examples
Commercial Snipara:
- hosted orchestration
- managed context ranking
- review and governance workflows
- team and tenant controls
- production analytics
- operational reliability
The language is open. The managed cognition layer is Snipara.
Relationship To Other Repos
| Repo | Role |
|---|---|
Snipara/snipara-server |
Hosted and self-hosted server surface |
alopez3006/snipara-mcp |
Lightweight stdio MCP connector |
Snipara/snipara-memory |
This open memory schema and local engine |
Development
pip install -e ".[dev]"
pytest
ruff check .
Useful docs:
License
Apache-2.0. See LICENSE.
Release files for snipara-memory 0.1.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| snipara_memory-0.1.3.tar.gz | 115.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| snipara_memory-0.1.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 214.6 kB
Release files / snipara_memory-0.1.3.tar.gz
| Download URL | snipara_memory-0.1.3.tar.gz |
|---|---|
| Size | 115.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
01b43cb0ee8768d3ee941ef94d0ae518b18b14cc2523068d53f8a60e4b438ee1
|
|
BLAKE2b-256 checksum How to use checksums |
ac366a8fd60446016a3994b0ffac7a0bf3da522da20c9a3e2530d47c08998cbb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 21, 2026.
Transparency logRelease files / snipara_memory-0.1.3-py3-none-any.whl
| Download URL | snipara_memory-0.1.3-py3-none-any.whl |
|---|---|
| Size | 99.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
6372e325938155b2ae99120cafccf7ceb0233afdec1572a0c9dcb36c28e10283
|
|
BLAKE2b-256 checksum How to use checksums |
cf2eeb5a6eb919ffbf043828986a86a07f840a3f26eeef38f884779b80c5df8f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 21, 2026.
Transparency log