The AI Data Layer: Secure, sandboxed environment for AI agents to query and process data.
Project description
Strake is the AI Data Layer. Not a query tool. Not a RAG pipeline. The sandboxed execution environment where agents meet your data and return answers, not rows.
Built on Apache Arrow DataFusion, Strake enables AI agents to discover, query, and process data across your entire stack (PostgreSQL, Snowflake, S3, and more) without the need for data movement or ETL. Give AI agents structured access to your entire data stack safely.
📚 Full Documentation: Check out the complete documentation for installation, architecture, and API references.
Key Features
- MCP-Native Discovery: Built for the Model Context Protocol. Your agents immediately discover your entire data catalog and schemas.
- Run Python, Not Prompts: Every agent execution runs inside strict native OS sandboxes for performance, or ephemeral MicroVMs for hardware-level isolation.
- Zero-Copy Federation: Query Postgres, S3, Local Files, REST, gRPC, and more simultaneously with Pushdown optimization via Apache Arrow.
- Read-Only by Default: Strict read-only enforcement, dynamic Row-Level Security (RLS), and PII masking out of the box.
- Developer First: Built for engineers shipping agents to production. Type-safe configuration, rich CLI tooling, and local development workflows.
- Python Native: Zero-copy integration with Pandas and Polars via PyO3.
- GitOps Native: Manage your data mesh configuration as code. Version control your sources, policies, and metrics.
- Observability: Built-in OpenTelemetry tracing and Prometheus metrics.
- Enterprise Capabilities: OIDC Authentication, Row-Level Security, and Data Contracts (Enterprise Edition).
Code Mode: Don't Compute in Context
Most agents fail by swallowing thousands of raw SQL rows. Strake's Code Mode lets them process data in Python where it lives, inside a secure sandbox, sending only the parsed results that matter to the LLM.
import strake
from strake.mcp import run_python
script = """
# 1. Query 10M rows instantly via DataFusion
df = strake.sql("SELECT * FROM user_events")
# 2. Aggregate in Python to prevent context bloat
summary = df.groupby('feature_flag')['latency'].median()
# 3. Print exactly what the LLM needs
print(summary.to_json())
"""
# Runs isolated with OS Sandboxing or Firecracker VMs
result = await run_python(script)
print(result)
Quick Start (5-Minute Setup)
If you're building agents that need to query Postgres, S3, and a REST API in a single operation — without context overflow and without leaking credentials — Strake is the runtime you're missing.
1. Installation
Quick Install (Linux/macOS)
curl -sSfL https://strakedata.com/install.sh | sh
Install via Cargo (Rust)
cargo install --path crates/cli
cargo install --path crates/server
Python Client
pip install strake
2. Configuration (GitOps)
Initialize a new config and validate your sources:
# Initialize a new config
strake-cli init
# Validate configuration
strake-cli validate sources.yaml
# Apply to the metadata store (Sync)
strake-cli apply sources.yaml --force
3. Query with Python
First, define your data sources in a sources.yaml file:
sources:
- name: local_files
type: csv
path: "data/*.csv"
has_header: true
tables:
- name: measurements
Then, query using the Strake Python client:
import strake
import polars as pl
# Connect using your source configuration
conn = strake.connect(sources_config="sources.yaml")
# Query across sources using standard SQL
query = "SELECT * FROM measurements LIMIT 5"
data = conn.sql(query)
# Zero-copy integration with Polars/Pandas
df = pl.from_arrow(data)
print(df)
Project Structure
| Component | Description |
|---|---|
| strake-runtime | Orchestration layer (Federation Engine, Sidecar). |
| strake-connectors | Data source implementations (Postgres, S3, REST, etc). |
| strake-sql | SQL Dialects, Query Optimization, and Substrait generation. |
| strake-common | Shared types, configuration, and error handling. |
| strake-server | Arrow Flight SQL server implementation. |
| strake-cli | GitOps CLI for managing data mesh configurations. |
| strake-python | Python bindings for high-performance data access. |
Contributing
We welcome contributions! Please see our Contributing Guidelines for details on how to get started.
License
Strake is licensed under the Apache 2.0 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
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 strake-0.2.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: strake-0.2.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 62.8 MB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f9cc2738f5f24c42e5f5b7eeddc900546ea9a298af090fcd5236468171b02ab
|
|
| MD5 |
dff1bdcccdd9ba18da3c53fddab2f5db
|
|
| BLAKE2b-256 |
879f465a855678cfc4bb3e7c5fe10a4187900f3ff2c1dc0c4f5e42a6d1e78c04
|
Provenance
The following attestation bundles were made for strake-0.2.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on strake-data/strake
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
strake-0.2.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl -
Subject digest:
9f9cc2738f5f24c42e5f5b7eeddc900546ea9a298af090fcd5236468171b02ab - Sigstore transparency entry: 1107694636
- Sigstore integration time:
-
Permalink:
strake-data/strake@b3c51941447abbc3571006792d8c6c22a38153cc -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/strake-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b3c51941447abbc3571006792d8c6c22a38153cc -
Trigger Event:
push
-
Statement type:
File details
Details for the file strake-0.2.3-cp310-abi3-win_amd64.whl.
File metadata
- Download URL: strake-0.2.3-cp310-abi3-win_amd64.whl
- Upload date:
- Size: 54.0 MB
- Tags: CPython 3.10+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29524fba5aa0f55b7cf5fba6e403b7bf270526aaa145bbc50712bf7991ed0ef5
|
|
| MD5 |
1c21c6e5959e8b2bb3e251dac1610130
|
|
| BLAKE2b-256 |
13aea864253eee0888cc42057dae43f882025158104166788898ed400aefdb71
|
Provenance
The following attestation bundles were made for strake-0.2.3-cp310-abi3-win_amd64.whl:
Publisher:
release.yml on strake-data/strake
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
strake-0.2.3-cp310-abi3-win_amd64.whl -
Subject digest:
29524fba5aa0f55b7cf5fba6e403b7bf270526aaa145bbc50712bf7991ed0ef5 - Sigstore transparency entry: 1107694630
- Sigstore integration time:
-
Permalink:
strake-data/strake@b3c51941447abbc3571006792d8c6c22a38153cc -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/strake-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b3c51941447abbc3571006792d8c6c22a38153cc -
Trigger Event:
push
-
Statement type:
File details
Details for the file strake-0.2.3-cp310-abi3-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: strake-0.2.3-cp310-abi3-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 62.8 MB
- Tags: CPython 3.10+, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
590ca8a2a2bd59e28b00f88b42e62fdfca3410ede71f50d8f0b0085101e2cfbb
|
|
| MD5 |
0db0097c11506cf608f48c4c1882a92a
|
|
| BLAKE2b-256 |
a2db1ae4d129cfc7ddeb3e2799ff3a0e2dc2677be38e5a43e792ae127a75d586
|
Provenance
The following attestation bundles were made for strake-0.2.3-cp310-abi3-manylinux_2_28_x86_64.whl:
Publisher:
release.yml on strake-data/strake
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
strake-0.2.3-cp310-abi3-manylinux_2_28_x86_64.whl -
Subject digest:
590ca8a2a2bd59e28b00f88b42e62fdfca3410ede71f50d8f0b0085101e2cfbb - Sigstore transparency entry: 1107694640
- Sigstore integration time:
-
Permalink:
strake-data/strake@b3c51941447abbc3571006792d8c6c22a38153cc -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/strake-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b3c51941447abbc3571006792d8c6c22a38153cc -
Trigger Event:
push
-
Statement type:
File details
Details for the file strake-0.2.3-cp310-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: strake-0.2.3-cp310-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 53.8 MB
- Tags: CPython 3.10+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a3ee25b8b70c1914052ab3c4c07334d7f121f8296a2f27c0f200234a4ae572c
|
|
| MD5 |
ec14dd305e7b500c40a25cffe10ddd40
|
|
| BLAKE2b-256 |
a36621a21ec3d463ee7bea2b08497b35f4b304e2e7ad432abf901a1de6e93b39
|
Provenance
The following attestation bundles were made for strake-0.2.3-cp310-abi3-macosx_11_0_arm64.whl:
Publisher:
release.yml on strake-data/strake
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
strake-0.2.3-cp310-abi3-macosx_11_0_arm64.whl -
Subject digest:
0a3ee25b8b70c1914052ab3c4c07334d7f121f8296a2f27c0f200234a4ae572c - Sigstore transparency entry: 1107694627
- Sigstore integration time:
-
Permalink:
strake-data/strake@b3c51941447abbc3571006792d8c6c22a38153cc -
Branch / Tag:
refs/tags/v0.2.3 - Owner: https://github.com/strake-data
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b3c51941447abbc3571006792d8c6c22a38153cc -
Trigger Event:
push
-
Statement type: