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 — your repo needs no Python, pip, or virtualenv; it all runs in an isolated uvx environment. The only machine-wide prerequisite is uv (a single binary that downloads its own Python if needed). Two more 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.4.tar.gz (179.7 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.4-py3-none-any.whl (35.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: tessera_memory-0.1.4.tar.gz
  • Upload date:
  • Size: 179.7 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.4.tar.gz
Algorithm Hash digest
SHA256 a967ee6f6d57fd0c4a450779ee336bd4a8b737cbc41ca46ef5e6fddf9d21b573
MD5 4711c943e23765f4daaf9404b97fb819
BLAKE2b-256 ae3624fce26b9cc2c51e6c577d455329db16e62e12b9db17465aa00707733704

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tessera_memory-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 35.5 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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 8d18417d037c59302bea0c89b39570a1e80f812d2473445e2147b0663d081965
MD5 64ec52c1038af4a0f849c8524598334b
BLAKE2b-256 96ab57bb4f4b98dba6086d431c38605e0340a1a27366b42ec436e4473398e4b3

See more details on using hashes here.

Provenance

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