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. Two things are handled for you:

  • Repo isolation is automatic. Memory is namespaced per git repo (from the origin remote, falling back to the folder name). You never declare a repo name.
  • Your key is stored once, in a file. Run tessera-mcp login and the key is saved to ~/.tessera/credentials.json — no shell export, no ${VAR} in config, no restart.

Claude Code (one-step plugin). Install the plugin, then save your key once:

/plugin marketplace add harshkedia177/tessera-python
/plugin install tessera-memory@tessera
uvx --from tessera-mcp tessera-mcp login   # paste your tsk_live_... key when prompted

That's it — you get the five memory_* tools, auto-recall hooks, and the skill. (If you skip the login step, the first memory call simply tells the agent to ask you for the key and run it for you.)

Cursor / Claude Desktop. Add the server (no env block needed), then run the same tessera-mcp login once:

{
  "mcpServers": {
    "tessera": {
      "command": "uvx",
      "args": ["--from", "tessera-mcp", "tessera-mcp"]
    }
  }
}

Codex. Add to ~/.codex/config.toml, then run tessera-mcp login once:

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

Prefer the environment? TESSERA_API_KEY (key) and TESSERA_REPO (to override the auto-detected namespace) still work everywhere and take precedence over the stored values.

Full details — the all-in-one Claude Code plugin, hooks, and the privacy notes on transcript consolidation — are in Use with MCP.

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.3.tar.gz (179.6 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.3-py3-none-any.whl (35.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: tessera_memory-0.1.3.tar.gz
  • Upload date:
  • Size: 179.6 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.3.tar.gz
Algorithm Hash digest
SHA256 2f90d57235724c830a4fc6c2c8991ed3d008b9e61822eb64ba2211943f4df540
MD5 c723e2f3187a9a12c02bd489f2d88352
BLAKE2b-256 97f0db1e4584b412b2a9c5576aedc81b51ebc8e826cde9f92706a76167ec2c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tessera_memory-0.1.3.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.3-py3-none-any.whl.

File metadata

  • Download URL: tessera_memory-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 35.4 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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 42cd144cd96c26d2f95536786fdadf3fe1a93d31aadab1bec9e3e2072f56de72
MD5 404b386a97097f382b3e8ef12203c437
BLAKE2b-256 ea78eb43f5fe2ba3e440d1ec149c04ef0283aff2f8b49bfa681e924c6d38c05e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tessera_memory-0.1.3-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