Skip to main content

Long-term memory for LLM agents: the typed, sync and async Python client for the Tessera memory service.

Project description

tessera-memory

Long-term memory for LLM agents.

Your agent forgets everything between sessions. Tessera remembers. Write conversational turns, then recall ranked hits or a prompt-ready context block. Sync and async, fully typed.

PyPI version Python versions License CI

Getting started · Concepts · API reference · Use with MCP

What you get

🧠 Memory Extracts facts and episodes from conversation turns. Handles corrections, pinning, and forgetting.
🔍 Search Ranked, typed retrieval over your memory. No LLM in the loop, so it stays cheap and deterministic.
💬 Query Composes retrieved memory into a prompt-ready context block for your model.
📚 Procedures Store reusable lessons (trigger, steps, outcome) and recall them by task.
Sync + async The same typed API on Tessera and AsyncTessera.
🔌 MCP built in Give Claude Code, Codex, and Cursor memory with one server.

Install

pip install tessera-memory   # or: uv add tessera-memory

Requires Python 3.10+.

Quickstart

from tessera_memory import Tessera

client = Tessera()  # reads TESSERA_API_KEY, or Tessera(api_key="tsk_live_...")

# Write what happened.
client.memories.add(content="Ada prefers dark roast coffee.", role="user", user_id="ada")

# Get ranked hits (no LLM)...
hits = client.search(query="what coffee does Ada like?", user_id="ada")

# ...or a prompt-ready context block (may call an LLM server-side).
answer = client.query(query="what coffee does Ada like?", mode="chat", user_id="ada")
print(answer.context)

That is the whole loop: add to remember, search to retrieve, query to get context for a model.

Async

Every method exists on AsyncTessera with await:

import asyncio
from tessera_memory import AsyncTessera


async def main() -> None:
    async with AsyncTessera() as client:
        await client.memories.add(content="Ada prefers dark roast coffee.", role="user", user_id="ada")
        async for item in client.memories.list(user_id="ada"):
            print(item.text)


asyncio.run(main())

Use with MCP (Claude Code, Codex, Cursor)

Give your coding agent memory with the tessera-mcp server. uvx fetches it (and the SDK) on first run, so there's nothing to install. Your key lives in the MCP config, not your shell, so it persists across sessions with no export to re-run.

Claude Code. Register it once with your key:

claude mcp add --env TESSERA_API_KEY=tsk_live_... --env TESSERA_REPO=repo:my-app \
  --scope user tessera -- uvx --from tessera-mcp tessera-mcp

Cursor / Claude Desktop. Add to the MCP config:

{
  "mcpServers": {
    "tessera": {
      "command": "uvx",
      "args": ["--from", "tessera-mcp", "tessera-mcp"],
      "env": { "TESSERA_API_KEY": "tsk_live_...", "TESSERA_REPO": "repo:my-app" }
    }
  }
}

Codex. Add to ~/.codex/config.toml:

[mcp_servers.tessera_memory]
command = "uvx"
args = ["--from", "tessera-mcp", "tessera-mcp"]

[mcp_servers.tessera_memory.env]
TESSERA_API_KEY = "tsk_live_..."
TESSERA_REPO = "repo:my-app"

Want auto-recall hooks and the skill too? Use with MCP covers the all-in-one Claude Code plugin, Cursor, and the privacy notes on transcript consolidation.

Configuration

The client reads TESSERA_API_KEY from the environment, or you pass it directly. Auth goes out as a bearer token. For timeouts, retries, logging, raw responses, and a custom HTTP client, see Configuration.

Documentation

Development

make sync-spec    # copy openapi.json from the server checkout
make generate     # regenerate src/tessera_memory/models.py from openapi.json
make lint         # ruff check + format --check
make typecheck    # mypy --strict
make test         # pytest (respx-mocked)

License

Apache 2.0. See LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tessera_memory-0.1.2.tar.gz (174.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tessera_memory-0.1.2-py3-none-any.whl (35.1 kB view details)

Uploaded Python 3

File details

Details for the file tessera_memory-0.1.2.tar.gz.

File metadata

  • Download URL: tessera_memory-0.1.2.tar.gz
  • Upload date:
  • Size: 174.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tessera_memory-0.1.2.tar.gz
Algorithm Hash digest
SHA256 888879b41d2b697207e7ebc7c8870bcaf77a230c01116bebcbbf5d14da571f1b
MD5 a972debda8717394d63aefebac5d63e0
BLAKE2b-256 d010ba6b50daac5cb3de441775ac3f0576bff8eed9c1e7b3c50656011c437bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tessera_memory-0.1.2.tar.gz:

Publisher: ci.yml on harshkedia177/tessera-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tessera_memory-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: tessera_memory-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tessera_memory-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e8f0c274c5b0577352170b2fc15464d3357bbdf5e815aca88c357e9c1e2c4236
MD5 5942af6f030b1eb279d90d395a2b261e
BLAKE2b-256 957300c85f3ee62ed5d10140899a0bc09d047238088a764395f3620137be0fff

See more details on using hashes here.

Provenance

The following attestation bundles were made for tessera_memory-0.1.2-py3-none-any.whl:

Publisher: ci.yml on harshkedia177/tessera-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page