pypi datoonstdioMITupdated 8d ago
smart structured-dataβTOON gateway β converts only when it actually saves tokens
What can you do with datoon?
Raw structured data is often verbose in LLM prompts. TOON can save tokens β but blind conversion can also make payloads worse. datoon adds a decision layer: convert when structure and savings justify it, skip when they don't, and always explain why.
Supports JSON, CSV, JSONL, YAML, XML, Parquet, Avro, ORC, Excel, and Apple Numbers β auto-detected from file extension.
Before / After
JSON in the prompt (43 tokens)
{"users":[
{"id":1,"name":"Ada","role":"admin"},
{"id":2,"name":"Lin","role":"analyst"},
{"id":3,"name":"Grace","role":"viewer"}
]}
datoon converts β TOON (24 tokens)
users[3]{id,name,role}:
1,Ada,admin
2,Lin,analyst
3,Grace,viewer
{"decision":"convert","reason":"Estimated savings 44.19% (threshold 15.00%)."}
CSV from a data pipeline (111 tokens as JSON)
id,name,role
1,Ada,admin
2,Lin,analyst
3,Grace,viewer
datoon auto-converts β TOON (24 tokens)
datoon data.csv --report-stdout
Same result. Zero JSON serialization in your code.
Non-uniform payload (26 tokens)
{"config":{"debug":true},"tags":["a","b"]}
datoon skips β keeps JSON
{"decision":"skip","reason":"No uniform object arrays found with at least 3 rows."}
No Node.js call. No silent corruption.
Same data. Right format. Always explained.
ββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PAYLOAD SAVINGS (auto avg) ββββββββββ 28% β
β PAYLOAD SAVINGS (agent skill) ββββββββββ 62% β
β DECISION ACCURACY ββββββββββ 100% β
β HARMFUL CONVERSIONS BLOCKED ββββββββββ 100% β
ββββββββββββββββββββββββββββββββββββββββββββββββββββ
[!IMPORTANT] datoon saves payload tokens β the structured data portion of your prompt. Token savings depend on payload shape: uniform tabular data converts well; deeply nested or non-uniform structures are skipped. Every decision includes a reason so pipelines can log, debug, and trust the outcome.
Install
# core (JSON, CSV, JSONL, XML β no extra deps)
uv add datoon
pip install datoon
# with YAML support
pip install "datoon[yaml]"
# with Excel support
pip install "datoon[excel]"
# with Parquet / ORC / Avro support
pip install "datoon[columnar]"
# with Apple Numbers support
pip install "datoon[numbers]"
# with tiktoken-based token counting
pip install "datoon[tokens]"
# with MCP server
pip install "datoon[mcp]"
# everything
pip install "datoon[all]"
Requires Python 3.12+. TOON conversion requires Node.js with npx in PATH β analysis and format reading work without it.
For Claude Code plugin, Codex, and MCP config β INSTALL.md.
What You Get
| What | |
|---|---|
datoon CLI |
Auto-gate any supported format β TOON from terminal or scripts |
| Python API | convert_json_for_llm() + read_tabular() for any LLM pipeline |
| MCP Server | convert_json, convert_text, analyze_json tools for Claude Desktop, Cursor, Windsurf |
| Claude Code Plugin | /datoon in-session trigger, installs from GitHub in one command |
| Codex Plugin | Marketplace plugin β structured-data mode for Codex |
Supported input formats
| Format | Extension | Extra needed |
|---|---|---|
| JSON | .json |
β |
| JSONL | .jsonl, .ndjson |
β |
| CSV | .csv |
β |
| XML | .xml |
β |
| YAML | .yaml, .yml |
datoon[yaml] |
| Excel | .xlsx, .xls |
datoon[excel] |
| Parquet | .parquet |
datoon[columnar] |
| Avro | .avro |
datoon[columnar] |
| ORC | .orc |
datoon[columnar] |
| Apple Numbers | .numbers |
datoon[numbers] |
How It Works
- Detect format β from
--formatflag, file extension, or default to JSON for stdin - Read + normalize β parse source into list of row dicts; serialize to compact JSON
- Analyze structure β uniform object arrays? acceptable depth? minimum rows?
- Gate early β non-candidates skip before any CLI call; no Node.js overhead
- Convert + estimate β TOON CLI runs, token savings calculated
- Gate savings β below threshold β return JSON; above β return TOON with report
Every path returns a ConversionReport with decision, reason, and token estimates. Pipelines never get silent surprises.
Quick Start
JSON (stdin):
echo '{"users":[{"id":1,"name":"Ada"},{"id":2,"name":"Lin"},{"id":3,"name":"Grace"}]}' | datoon --report-stdout
CSV (auto-detected from extension):
datoon data.csv --report-stdout
JSONL:
datoon data.jsonl -o output.toon
YAML (requires datoon[yaml]):
datoon data.yaml --report-stdout
Parquet (requires datoon[columnar]):
datoon data.parquet --report ./report.json
Explicit format override:
datoon --format csv < data.csv --report-stdout
Force conversion (bypass gating β for experiments):
datoon data.json --force --report-stdout
Python API
JSON conversion:
from datoon import convert_json_for_llm, ConversionConfig, DatoonError
config = ConversionConfig(min_savings_ratio=0.15, max_depth=6, min_uniform_rows=3)
try:
outcome = convert_json_for_llm(raw_json, config)
except DatoonError as exc:
raise
# outcome.payload_text β TOON or original JSON
# outcome.report.decision β "convert" | "skip"
# outcome.report.reason β human-readable explanation
send_to_model(outcome.payload_text)
Any format via read_tabular:
import json
from pathlib import Path
from datoon import read_tabular, convert_json_for_llm, ConversionConfig
# text formats: csv, jsonl, yaml, xml
rows = read_tabular("csv", text=csv_string)
# binary formats: excel, parquet, orc, avro, numbers
rows = read_tabular("parquet", path=Path("data.parquet"))
json_text = json.dumps(rows, separators=(",", ":"))
outcome = convert_json_for_llm(json_text, ConversionConfig())
send_to_model(outcome.payload_text)
Structure-only analysis (no Node.js required):
from datoon.analyzer import analyze_payload
from datoon.models import ConversionConfig
analysis = analyze_payload(parsed_data, ConversionConfig())
print(analysis.is_candidate, analysis.reason)
MCP Server
datoon ships an MCP server with three tools:
| Tool | Description |
|---|---|
convert_json |
Full JSON conversion with policy gating |
convert_text |
Converts CSV, YAML, XML, or JSONL text with policy gating |
analyze_json |
Structure analysis only β no Node.js needed |
Claude Desktop / Cursor / Windsurf config:
{
"mcpServers": {
"datoon": {
"command": "uvx",
"args": ["--from", "datoon[mcp]", "datoon", "mcp"]
}
}
}
Run locally:
datoon mcp # or the standalone script: datoon-mcp
Listed on the MCP Registry, Smithery, and Glama. See MARKETPLACES.md.
Claude Code Plugin
Install directly from GitHub:
claude plugin marketplace add andrii-su/datoon
claude plugin install datoon@datoon
Trigger in-session:
/datoon
convert this JSON to TOON if it saves tokens
use datoon mode for structured data
CLI Reference
| Flag | Default | Description |
|---|---|---|
--format |
auto | Input format: json, csv, jsonl, yaml, xml, excel, parquet, avro, orc, numbers |
--force |
false |
Bypass gating and minimum savings threshold |
--min-savings |
0.15 |
Minimum relative token savings required |
--max-depth |
6 |
Maximum nesting depth for auto-conversion |
--min-uniform-rows |
3 |
Minimum rows in uniform object arrays |
--timeout |
30 |
Seconds before TOON CLI call is aborted |
--report <path> |
β | Write JSON conversion report to file |
--report-stdout |
β | Print JSON conversion report to stderr |
-o <path> |
stdout | Output file path |
--version |
β | Print version and exit |
Format is auto-detected from file extension. Use --format to override or when reading from stdin.
Benchmarks
PYTHONPATH=src python benchmarks/run.py --dry-run
PYTHONPATH=src python benchmarks/run.py
PYTHONPATH=src python benchmarks/run.py --update-readme
Why auto mode outperforms forced conversion
Auto mode avoids low-benefit and high-risk payloads (orders-nested, mixed-non-uniform) while matching forced TOON's average token count on suitable ones. Every decision comes with a reasoned report.
| Scenario | JSON Baseline | Forced TOON | datoon Auto |
|---|---|---|---|
| Average tokens | 77 | 50 | 50 |
| Avg token saved | 0.0% | 26.8% | 28.1% |
| Decision quality | n/a | Converts all | Converts 3/5, skips harmful cases |
| Dataset | JSON | TOON (forced) | Raw Saved | Auto | Auto Tokens | Auto Saved |
|---|---|---|---|---|---|---|
| users-small | 54 | 40 | 25.9% | convert | 40 | 25.9% |
| events-medium | 219 | 162 | 26.0% | convert | 162 | 26.0% |
| orders-nested | 106 | 116 | -9.4% | skip | 106 | 0.0% |
| mixed-non-uniform | 35 | 47 | -34.3% | skip | 35 | 0.0% |
| metrics-wide | 142 | 103 | 27.5% | convert | 103 | 27.5% |
| Average | 111 | 94 | 7.1% | 3/5 convert | 89 | 15.9% |
Forced conversion succeeded for 5/5 payloads.
Format conversion benchmark
Token savings when converting from common structured formats (CSV, JSONL, XML, YAML). Baseline is the JSON representation of the same data β what an LLM would receive without datoon.
| Dataset | Format | JSON Tokens | TOON (forced) | Auto | Auto Tokens | Auto Saved |
|---|---|---|---|---|---|---|
| users-csv | csv | 53 | 29 | convert | 29 | 45.3% |
| events-jsonl | jsonl | 194 | 109 | convert | 109 | 43.8% |
| catalog-xml | xml | 96 | 50 | convert | 50 | 47.9% |
| metrics-yaml | yaml | 129 | 61 | convert | 61 | 52.7% |
| Average | β | 118 | 62 | 4/4 convert | 62 | 47.4% |
Forced conversion succeeded for 4/4 payloads.
Agent skill evaluation
Artifact-based subagent comparison β identical analysis tasks, two modes:
with_skill: agent received thedatoonskill and followed the conversion workflow.without_skill: agent used JSON directly, no TOON ordatoon.
3 payload sizes Γ 3 iterations = 18 total agent runs. Both modes: 100% correct answers.
| Scenario | Avg JSON Tokens | Avg TOON Tokens | Avg Payload Saved |
|---|---|---|---|
| small | 225 | 118 | 47.6% |
| medium | 2,972 | 1,138 | 61.7% |
| large | 17,757 | 6,673 | 62.4% |
Full report and raw outputs: benchmarks/agent_skill_eval/. Savings are payload-token estimates, not full end-to-end model-token usage.
Development
Contributor workflow: CONTRIBUTING.md. Maintainer/agent notes: CLAUDE.md.
Setup:
uv sync --extra dev
uvx pre-commit install
Tests:
pytest -m "not integration" # unit only (102 tests)
pytest # with integration (requires Node.js + npx)
Skill sync + plugin metadata:
python scripts/validate_skill_sync.py
python scripts/validate_plugin_metadata.py
Links
- INSTALL.md β full install matrix, all targets, per-agent detail
- CONTRIBUTING.md β contributor workflow
- CLAUDE.md β maintainer guide for agents
- CHANGELOG.md β release history
- SECURITY.md β vulnerability reporting
- Live docs β
docs/ - Issues β bugs, features, questions
License
MIT
Install
Add datoon to your client. Pick the one you use.
claude mcp add datoon -- uvx datooncodex mcp add datoon -- uvx datoonamp mcp add datoon -- uvx datoon{
"mcpServers": {
"datoon": {
"command": "uvx",
"args": [
"datoon"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"datoon": {
"command": "uvx",
"args": [
"datoon"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"datoon","command":"uvx","args":["datoon"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"datoon": {
"command": "uvx",
"args": [
"datoon"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"datoon": {
"command": "uvx",
"args": [
"datoon"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"datoon": {
"command": "uvx",
"args": [
"datoon"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"datoon": {
"type": "local",
"command": "uvx",
"args": [
"datoon"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"datoon": {
"command": {
"path": "uvx",
"args": [
"datoon"
]
}
}
}
}Add to your Zed `settings.json`.
uvx datoonRun `goose configure`, choose **Add Extension β Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance25/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint β no local install
Version history
| Versions | Published |
|---|---|
| 1.9.1Latest | Jul 7, 2026 |
| 1.9.0 | Jul 7, 2026 |
| 1.8.0 | Jul 7, 2026 |
| 1.7.4 | Jul 7, 2026 |
| 1.7.3 | Jul 7, 2026 |
| 1.7.2 | Jul 7, 2026 |
| 1.7.1 | Jun 22, 2026 |
| 1.7.0 | Jun 22, 2026 |