tai42-storage-local
Local-filesystem storage backend for the TAI ecosystem. It implements the
tai42_contract.storage.Storage contract over a directory tree on the local disk,
serving both text and binary content, and registers itself as the active storage
provider when its package is imported.
The TAI ecosystem
TAI is an open-source runtime for MCP tools, agents, and workflows. A Storage
backend answers the question of where content physically lives — a template, a
document, or a media file loaded by id. This package is the local-filesystem
implementation; siblings back the same contract with S3 (tai42-storage-s3) and
GitHub (tai42-storage-github). The ecosystem is open-ended: any package can back
the same contract, so this repo is this provider's own full doc home, and the
documentation site covers the platform-level story:
- Storage & resources concept: https://tai42.ai/concepts/storage-and-resources
- Build a storage provider (author guide): https://tai42.ai/guides/authors/storage-provider
- Ecosystem catalog: https://tai42.ai/reference/catalog
Install
Requires Python 3.13+. Install from PyPI into the environment that runs the server:
uv add tai42-storage-local
Or from source — clone this repo and add it as an editable dependency; the
tai42-* dependencies resolve in-tree from the workspace.
git clone https://github.com/tai42ai/tai42 # next to your app checkout
cd /path/to/your/app
uv add --editable ../tai42/plugins/storage-local
Discovery
A backend is activated by a manifest, not an entry point. Name this package in the
manifest's storage_module field; the runtime imports it, and the
@tai42_app.storage.register_storage decorator fires as an import side-effect to
register LocalStorage as the active provider:
storage_module: tai42_storage_local
There is no auto-discovery — importing the package is the registration.
Configuration
Settings are read from the environment (or a .env file) with the
STORAGE_LOCAL_ prefix:
| Variable | Default | Description |
|---|---|---|
STORAGE_LOCAL_ROOT_PATH |
./templates |
The base directory every stored path is resolved under. |
STORAGE_LOCAL_CREATE_DIRS |
true |
Create missing parent directories on write. |
Contract surface
LocalStorage implements the full eight-method Storage contract:
- Text:
load(raisesFileNotFoundErrorwhen missing),list,upload,delete,delete_dir. - Binary/media:
load_bytes/upload_bytesread and write raw bytes directly (no encoding);statinherits the contract'smimetypes-based path inference, since the local filesystem stores no content-type metadata.
Every path is resolved under the configured root and rejected if it escapes it (a
path-boundary check, not a string prefix), and delete_dir refuses the storage
root via the shared assert_not_root guard.
Development
uv venv --python 3.13
uv pip install --no-sources --group dev --editable .
uv run --no-sync pytest --cov --cov-report=term-missing
uv run --no-sync ruff check .
uv run --no-sync ruff format --check .
uv run --no-sync pyright
License
Apache-2.0. See LICENSE and NOTICE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tai42_storage_local-0.2.2.tar.gz.
File metadata
- Download URL: tai42_storage_local-0.2.2.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9a448e565ae7ab2248d6fb6644d1ca10b559590e5aeef02d40a05f8d69a28bc
|
|
| MD5 |
09a0016efcad01fbbe8e8456000306e2
|
|
| BLAKE2b-256 |
61b7665594e4d8d2cf67e21dd0a175f9275cbf9d1f26329c78fab0bcde99319e
|
File details
Details for the file tai42_storage_local-0.2.2-py3-none-any.whl.
File metadata
- Download URL: tai42_storage_local-0.2.2-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d58d7174065f656d71046b0c485e62afab5bf00c4f3e4b916bacdd7bc462b1e
|
|
| MD5 |
86662f79fa1727e03fafb39aa67178be
|
|
| BLAKE2b-256 |
faa6e36173c9f28325749e9fb975a91f35dcb519860643b979b6cb0729671557
|