Kreuzberg Document Extraction
Kreuzberg is a high-performance document intelligence library with a Rust core and native bindings for Python, Node.js/TypeScript, Ruby, Go, Java, C#, PHP, and Elixir. It extracts text, tables, metadata, and images from 91+ file formats including PDF, Office documents, images (with OCR), HTML, email, archives, and academic formats.
Use this skill when writing code that:
- Extracts text or metadata from documents
- Performs OCR on scanned documents or images
- Batch-processes multiple files
- Configures extraction options (output format, chunking, OCR, language detection)
- Implements custom plugins (post-processors, validators, OCR backends)
Installation
Python
pip install kreuzberg
# Optional OCR backends:
pip install kreuzberg[easyocr] # EasyOCR
Node.js
npm install @kreuzberg/node
Rust
# Cargo.toml
[dependencies]
kreuzberg = { version = "4", features = ["tokio-runtime"] }
# features: tokio-runtime (required for sync + batch), pdf, ocr, chunking,
# embeddings, language-detection, keywords-yake, keywords-rake
CLI
# Download from GitHub releases, or:
cargo install kreuzberg-cli
Quick Start
Python (Async)
from kreuzberg import extract_file
result = await extract_file("document.pdf")
print(result.content) # extracted text
print(result.metadata) # document metadata
print(result.tables) # extracted tables
Python (Sync)
from kreuzberg import extract_file_sync
result = extract_file_sync("document.pdf")
print(result.content)
Node.js
import { extractFile } from "@kreuzberg/node";
const result = await extractFile("document.pdf");
console.log(result.content);
console.log(result.metadata);
console.log(result.tables);
Node.js (Sync)
import { extractFileSync } from "@kreuzberg/node";
const result = extractFileSync("document.pdf");
Rust (Async)
use kreuzberg::{extract_file, ExtractionConfig};
#[tokio::main]
async fn main() -> kreuzberg::Result<()> {
let config = ExtractionConfig::default();
let result = extract_file("document.pdf", None, &config).await?;
println!("{}", result.content);
Ok(())
}
Rust (Sync) — requires tokio-runtime feature
use kreuzberg::{extract_file_sync, ExtractionConfig};
fn main() -> kreuzberg::Result<()> {
let config = ExtractionConfig::default();
let result = extract_file_sync("document.pdf", None, &config)?;
println!("{}", result.content);
Ok(())
}
CLI
kreuzberg extract document.pdf
kreuzberg extract document.pdf --format json
kreuzberg extract document.pdf --output-format markdown
Configuration
All languages use the same configuration structure with language-appropriate naming conventions.
Python (snake_case)
from kreuzberg import (
ExtractionConfig, OcrConfig, TesseractConfig,
PdfConfig, ChunkingConfig,
)
config = ExtractionConfig(
ocr=OcrConfig(
backend="tesseract",
language="eng",
tesseract_config=TesseractConfig(psm=6, enable_table_detection=True),
),
pdf_options=PdfConfig(passwords=["secret123"]),
chunking=ChunkingConfig(max_chars=1000, max_overlap=200),
output_format="markdown",
)
result = await extract_file("document.pdf", config=config)
Node.js (camelCase)
import { extractFile, type ExtractionConfig } from "@kreuzberg/node";
const config: ExtractionConfig = {
ocr: { backend: "tesseract", language: "eng" },
pdfOptions: { passwords: ["secret123"] },
chunking: { maxChars: 1000, maxOverlap: 200 },
outputFormat: "markdown",
};
const result = await extractFile("document.pdf", null, config);
Rust (snake_case)
use kreuzberg::{ExtractionConfig, OcrConfig, ChunkingConfig, OutputFormat};
let config = ExtractionConfig {
ocr: Some(OcrConfig {
backend: "tesseract".into(),
language: "eng".into(),
..Default::default()
}),
chunking: Some(ChunkingConfig {
max_characters: 1000,
overlap: 200,
..Default::default()
}),
output_format: OutputFormat::Markdown,
..Default::default()
};
let result = extract_file("document.pdf", None, &config).await?;
Config File (TOML)
output_format = "markdown"
[ocr]
backend = "tesseract"
language = "eng"
[chunking]
max_chars = 1000
max_overlap = 200
[pdf_options]
passwords = ["secret123"]
# CLI: auto-discovers kreuzberg.toml in current/parent directories
kreuzberg extract doc.pdf
# or explicit:
kreuzberg extract doc.pdf --config kreuzberg.toml
kreuzberg extract doc.pdf --config-json '{"ocr":{"backend":"tesseract","language":"deu"}}'
Batch Processing
Python
from kreuzberg import batch_extract_files, batch_extract_files_sync
# Async
results = await batch_extract_files(["doc1.pdf", "doc2.docx", "doc3.xlsx"])
# Sync
results = batch_extract_files_sync(["doc1.pdf", "doc2.docx"])
for result in results:
print(f"{len(result.content)} chars extracted")
Node.js
import { batchExtractFiles } from "@kreuzberg/node";
const results = await batchExtractFiles(["doc1.pdf", "doc2.docx"]);
Rust — requires tokio-runtime feature
use kreuzberg::{batch_extract_file, ExtractionConfig};
let config = ExtractionConfig::default();
let paths = vec!["doc1.pdf", "doc2.docx"];
let results = batch_extract_file(paths, &config).await?;
CLI
kreuzberg batch *.pdf --format json
kreuzberg batch docs/*.docx --output-format markdown
OCR
OCR runs automatically for images and scanned PDFs. Tesseract is the default backend (native binding, no external install required).
Backends
- Tesseract (default): Built-in native binding. All Tesseract languages supported.
- EasyOCR (Python only):
pip install kreuzberg[easyocr]. Pass easyocr_kwargs={"gpu": True}.
- PaddleOCR (Python only): Bundled since 4.8.5, no extra install needed. Pass
paddleocr_kwargs={"use_angle_cls": True}.
- Guten (Node.js only): Built-in OCR backend via
GutenOcrBackend.
Language Codes
config = ExtractionConfig(ocr=OcrConfig(language="eng")) # English
config = ExtractionConfig(ocr=OcrConfig(language="eng+deu")) # Multiple
config = ExtractionConfig(ocr=OcrConfig(language="all")) # All installed
Force OCR
config = ExtractionConfig(force_ocr=True) # OCR even if text is extractable
ExtractionResult Fields
| Field |
Python |
Node.js |
Rust |
Description |
| Text content |
result.content |
result.content |
result.content |
Extracted text (str/String) |
| MIME type |
result.mime_type |
result.mimeType |
result.mime_type |
Input document MIME type |
| Metadata |
result.metadata |
result.metadata |
result.metadata |
Document metadata (dict/object/HashMap) |
| Tables |
result.tables |
result.tables |
result.tables |
Extracted tables with cells + markdown |
| Languages |
result.detected_languages |
result.detectedLanguages |
result.detected_languages |
Detected languages (if enabled) |
| Chunks |
result.chunks |
result.chunks |
result.chunks |
Text chunks (if chunking enabled) |
| Images |
result.images |
result.images |
result.images |
Extracted images (if enabled) |
| Elements |
result.elements |
result.elements |
result.elements |
Semantic elements (if element_based format) |
| Pages |
result.pages |
result.pages |
result.pages |
Per-page content (if page extraction enabled) |
| Keywords |
result.keywords |
result.keywords |
result.keywords |
Extracted keywords (if enabled) |
Error Handling
Python
from kreuzberg import (
extract_file_sync, KreuzbergError, ParsingError,
OCRError, ValidationError, MissingDependencyError,
)
try:
result = extract_file_sync("file.pdf")
except ParsingError as e:
print(f"Failed to parse: {e}")
except OCRError as e:
print(f"OCR failed: {e}")
except ValidationError as e:
print(f"Invalid input: {e}")
except MissingDependencyError as e:
print(f"Missing dependency: {e}")
except KreuzbergError as e:
print(f"Extraction failed: {e}")
Node.js
import {
extractFile,
KreuzbergError,
ParsingError,
OcrError,
ValidationError,
MissingDependencyError,
} from "@kreuzberg/node";
try {
const result = await extractFile("file.pdf");
} catch (e) {
if (e instanceof ParsingError) {
/* ... */
} else if (e instanceof OcrError) {
/* ... */
} else if (e instanceof ValidationError) {
/* ... */
} else if (e instanceof KreuzbergError) {
/* ... */
}
}
Rust
use kreuzberg::{extract_file, ExtractionConfig, KreuzbergError};
let config = ExtractionConfig::default();
match extract_file("file.pdf", None, &config).await {
Ok(result) => println!("{}", result.content),
Err(KreuzbergError::Parsing(msg)) => eprintln!("Parse error: {msg}"),
Err(KreuzbergError::Ocr(msg)) => eprintln!("OCR error: {msg}"),
Err(e) => eprintln!("Error: {e}"),
}
Common Pitfalls
- Python ChunkingConfig fields: Use
max_chars and max_overlap, NOT max_characters or overlap.
- Rust extract_file signature: Third argument is
&ExtractionConfig (a reference), not Option. Use &ExtractionConfig::default() for defaults.
- Rust feature gates:
extract_file_sync, batch_extract_file, and batch_extract_file_sync all require features = ["tokio-runtime"] in Cargo.toml.
- Rust async context:
extract_file is async. Use #[tokio::main] or call from an async context.
- CLI --format vs --output-format:
--format controls CLI output (text/json). --output-format controls content format (plain/markdown/djot/html).
- Node.js extractFile signature:
extractFile(path, mimeType?, config?) — mimeType is the second arg (pass null to skip).
- Python detect_mime_type: The function for detecting from bytes is
detect_mime_type(data). For paths use detect_mime_type_from_path(path).
- Config file field names: Use snake_case in TOML/YAML/JSON config files (e.g.,
max_chars, max_overlap, pdf_options).
Supported Formats (Summary)
| Category |
Extensions |
| PDF |
.pdf |
| Word |
.docx, .odt |
| Spreadsheets |
.xlsx, .xlsm, .xlsb, .xls, .xla, .xlam, .xltm, .ods |
| Presentations |
.pptx, .ppt, .ppsx |
| eBooks |
.epub, .fb2 |
| Images |
.png, .jpg, .jpeg, .gif, .webp, .bmp, .tiff, .tif, .jp2, .jpx, .jpm, .mj2, .jbig2, .jb2, .pnm, .pbm, .pgm, .ppm, .svg |
| Markup |
.html, .htm, .xhtml, .xml |
| Data |
.json, .yaml, .yml, .toml, .csv, .tsv |
| Text |
.txt, .md, .markdown, .djot, .rst, .org, .rtf |
| Email |
.eml, .msg |
| Archives |
.zip, .tar, .tgz, .gz, .7z |
| Academic |
.bib, .biblatex, .ris, .nbib, .enw, .csl, .tex, .latex, .typ, .jats, .ipynb, .docbook, .opml, .pod, .mdoc, .troff |
See references/supported-formats.md for the complete format reference with MIME types.
Additional Resources
Detailed reference files for specific topics:
- Python API Reference — All functions, config classes, plugin protocols, exact signatures
- Node.js API Reference — All functions, TypeScript interfaces, worker pool APIs
- Rust API Reference — All functions with feature gates, structs, Cargo.toml examples
- CLI Reference — All commands, flags, config precedence, exit codes
- Configuration Reference — TOML/YAML/JSON formats, auto-discovery, env vars, full schema
- Supported Formats — All 85+ formats with file extensions and MIME types
- Advanced Features — Plugins, embeddings, MCP server, API server, security limits
- Other Language Bindings — Go, Ruby, Java, C#, PHP, Elixir, WASM, Docker
Full documentation: https://docs.kreuzberg.dev
GitHub: https://github.com/kreuzberg-dev/kreuzberg
1---2name: kreuzberg3description: Extract text, tables, metadata, and images from 91+ document formats (PDF, Office, images, HTML, email, archives, academic) using Kreuzberg. Use when writing code that calls Kreuzberg APIs in Python, Node.js/TypeScript, Rust, or CLI. Covers installation, extraction (sync/async), configuration (OCR, chunking, output format), batch processing, error handling, and plugins.4license: Elastic-2.05---67# Kreuzberg Document Extraction89Kreuzberg is a high-performance document intelligence library with a Rust core and native bindings for Python, Node.js/TypeScript, Ruby, Go, Java, C#, PHP, and Elixir. It extracts text, tables, metadata, and images from 91+ file formats including PDF, Office documents, images (with OCR), HTML, email, archives, and academic formats.1011Use this skill when writing code that:1213- Extracts text or metadata from documents14- Performs OCR on scanned documents or images15- Batch-processes multiple files16- Configures extraction options (output format, chunking, OCR, language detection)17- Implements custom plugins (post-processors, validators, OCR backends)1819## Installation2021### Python2223```bash24pip install kreuzberg25# Optional OCR backends:26pip install kreuzberg[easyocr] # EasyOCR27```2829### Node.js3031```bash32npm install @kreuzberg/node33```3435### Rust3637```toml38# Cargo.toml39[dependencies]40kreuzberg = { version = "4", features = ["tokio-runtime"] }41# features: tokio-runtime (required for sync + batch), pdf, ocr, chunking,42# embeddings, language-detection, keywords-yake, keywords-rake43```4445### CLI4647```bash48# Download from GitHub releases, or:49cargo install kreuzberg-cli50```5152## Quick Start5354### Python (Async)5556```python57from kreuzberg import extract_file5859result = await extract_file("document.pdf")60print(result.content) # extracted text61print(result.metadata) # document metadata62print(result.tables) # extracted tables63```6465### Python (Sync)6667```python68from kreuzberg import extract_file_sync6970result = extract_file_sync("document.pdf")71print(result.content)72```7374### Node.js7576```typescript77import { extractFile } from "@kreuzberg/node";7879const result = await extractFile("document.pdf");80console.log(result.content);81console.log(result.metadata);82console.log(result.tables);83```8485### Node.js (Sync)8687```typescript88import { extractFileSync } from "@kreuzberg/node";8990const result = extractFileSync("document.pdf");91```9293### Rust (Async)9495```rust96use kreuzberg::{extract_file, ExtractionConfig};9798#[tokio::main]99async fn main() -> kreuzberg::Result<()> {100 let config = ExtractionConfig::default();101 let result = extract_file("document.pdf", None, &config).await?;102 println!("{}", result.content);103 Ok(())104}105```106107### Rust (Sync) — requires `tokio-runtime` feature108109```rust110use kreuzberg::{extract_file_sync, ExtractionConfig};111112fn main() -> kreuzberg::Result<()> {113 let config = ExtractionConfig::default();114 let result = extract_file_sync("document.pdf", None, &config)?;115 println!("{}", result.content);116 Ok(())117}118```119120### CLI121122```bash123kreuzberg extract document.pdf124kreuzberg extract document.pdf --format json125kreuzberg extract document.pdf --output-format markdown126```127128## Configuration129130All languages use the same configuration structure with language-appropriate naming conventions.131132### Python (snake_case)133134```python135from kreuzberg import (136 ExtractionConfig, OcrConfig, TesseractConfig,137 PdfConfig, ChunkingConfig,138)139140config = ExtractionConfig(141 ocr=OcrConfig(142 backend="tesseract",143 language="eng",144 tesseract_config=TesseractConfig(psm=6, enable_table_detection=True),145 ),146 pdf_options=PdfConfig(passwords=["secret123"]),147 chunking=ChunkingConfig(max_chars=1000, max_overlap=200),148 output_format="markdown",149)150151result = await extract_file("document.pdf", config=config)152```153154### Node.js (camelCase)155156```typescript157import { extractFile, type ExtractionConfig } from "@kreuzberg/node";158159const config: ExtractionConfig = {160 ocr: { backend: "tesseract", language: "eng" },161 pdfOptions: { passwords: ["secret123"] },162 chunking: { maxChars: 1000, maxOverlap: 200 },163 outputFormat: "markdown",164};165166const result = await extractFile("document.pdf", null, config);167```168169### Rust (snake_case)170171```rust172use kreuzberg::{ExtractionConfig, OcrConfig, ChunkingConfig, OutputFormat};173174let config = ExtractionConfig {175 ocr: Some(OcrConfig {176 backend: "tesseract".into(),177 language: "eng".into(),178 ..Default::default()179 }),180 chunking: Some(ChunkingConfig {181 max_characters: 1000,182 overlap: 200,183 ..Default::default()184 }),185 output_format: OutputFormat::Markdown,186 ..Default::default()187};188189let result = extract_file("document.pdf", None, &config).await?;190```191192### Config File (TOML)193194```toml195output_format = "markdown"196197[ocr]198backend = "tesseract"199language = "eng"200201[chunking]202max_chars = 1000203max_overlap = 200204205[pdf_options]206passwords = ["secret123"]207```208209```bash210# CLI: auto-discovers kreuzberg.toml in current/parent directories211kreuzberg extract doc.pdf212# or explicit:213kreuzberg extract doc.pdf --config kreuzberg.toml214kreuzberg extract doc.pdf --config-json '{"ocr":{"backend":"tesseract","language":"deu"}}'215```216217## Batch Processing218219### Python220221```python222from kreuzberg import batch_extract_files, batch_extract_files_sync223224# Async225results = await batch_extract_files(["doc1.pdf", "doc2.docx", "doc3.xlsx"])226227# Sync228results = batch_extract_files_sync(["doc1.pdf", "doc2.docx"])229230for result in results:231 print(f"{len(result.content)} chars extracted")232```233234### Node.js235236```typescript237import { batchExtractFiles } from "@kreuzberg/node";238239const results = await batchExtractFiles(["doc1.pdf", "doc2.docx"]);240```241242### Rust — requires `tokio-runtime` feature243244```rust245use kreuzberg::{batch_extract_file, ExtractionConfig};246247let config = ExtractionConfig::default();248let paths = vec!["doc1.pdf", "doc2.docx"];249let results = batch_extract_file(paths, &config).await?;250```251252### CLI253254```bash255kreuzberg batch *.pdf --format json256kreuzberg batch docs/*.docx --output-format markdown257```258259## OCR260261OCR runs automatically for images and scanned PDFs. Tesseract is the default backend (native binding, no external install required).262263### Backends264265- **Tesseract** (default): Built-in native binding. All Tesseract languages supported.266- **EasyOCR** (Python only): `pip install kreuzberg[easyocr]`. Pass `easyocr_kwargs={"gpu": True}`.267- **PaddleOCR** (Python only): Bundled since 4.8.5, no extra install needed. Pass `paddleocr_kwargs={"use_angle_cls": True}`.268- **Guten** (Node.js only): Built-in OCR backend via `GutenOcrBackend`.269270### Language Codes271272```python273config = ExtractionConfig(ocr=OcrConfig(language="eng")) # English274config = ExtractionConfig(ocr=OcrConfig(language="eng+deu")) # Multiple275config = ExtractionConfig(ocr=OcrConfig(language="all")) # All installed276```277278### Force OCR279280```python281config = ExtractionConfig(force_ocr=True) # OCR even if text is extractable282```283284## ExtractionResult Fields285286| Field | Python | Node.js | Rust | Description |287| ------------ | --------------------------- | -------------------------- | --------------------------- | --------------------------------------------- |288| Text content | `result.content` | `result.content` | `result.content` | Extracted text (str/String) |289| MIME type | `result.mime_type` | `result.mimeType` | `result.mime_type` | Input document MIME type |290| Metadata | `result.metadata` | `result.metadata` | `result.metadata` | Document metadata (dict/object/HashMap) |291| Tables | `result.tables` | `result.tables` | `result.tables` | Extracted tables with cells + markdown |292| Languages | `result.detected_languages` | `result.detectedLanguages` | `result.detected_languages` | Detected languages (if enabled) |293| Chunks | `result.chunks` | `result.chunks` | `result.chunks` | Text chunks (if chunking enabled) |294| Images | `result.images` | `result.images` | `result.images` | Extracted images (if enabled) |295| Elements | `result.elements` | `result.elements` | `result.elements` | Semantic elements (if element_based format) |296| Pages | `result.pages` | `result.pages` | `result.pages` | Per-page content (if page extraction enabled) |297| Keywords | `result.keywords` | `result.keywords` | `result.keywords` | Extracted keywords (if enabled) |298299## Error Handling300301### Python302303```python304from kreuzberg import (305 extract_file_sync, KreuzbergError, ParsingError,306 OCRError, ValidationError, MissingDependencyError,307)308309try:310 result = extract_file_sync("file.pdf")311except ParsingError as e:312 print(f"Failed to parse: {e}")313except OCRError as e:314 print(f"OCR failed: {e}")315except ValidationError as e:316 print(f"Invalid input: {e}")317except MissingDependencyError as e:318 print(f"Missing dependency: {e}")319except KreuzbergError as e:320 print(f"Extraction failed: {e}")321```322323### Node.js324325```typescript326import {327 extractFile,328 KreuzbergError,329 ParsingError,330 OcrError,331 ValidationError,332 MissingDependencyError,333} from "@kreuzberg/node";334335try {336 const result = await extractFile("file.pdf");337} catch (e) {338 if (e instanceof ParsingError) {339 /* ... */340 } else if (e instanceof OcrError) {341 /* ... */342 } else if (e instanceof ValidationError) {343 /* ... */344 } else if (e instanceof KreuzbergError) {345 /* ... */346 }347}348```349350### Rust351352```rust353use kreuzberg::{extract_file, ExtractionConfig, KreuzbergError};354355let config = ExtractionConfig::default();356match extract_file("file.pdf", None, &config).await {357 Ok(result) => println!("{}", result.content),358 Err(KreuzbergError::Parsing(msg)) => eprintln!("Parse error: {msg}"),359 Err(KreuzbergError::Ocr(msg)) => eprintln!("OCR error: {msg}"),360 Err(e) => eprintln!("Error: {e}"),361}362```363364## Common Pitfalls3653661. **Python ChunkingConfig fields**: Use `max_chars` and `max_overlap`, NOT `max_characters` or `overlap`.3672. **Rust extract_file signature**: Third argument is `&ExtractionConfig` (a reference), not `Option`. Use `&ExtractionConfig::default()` for defaults.3683. **Rust feature gates**: `extract_file_sync`, `batch_extract_file`, and `batch_extract_file_sync` all require `features = ["tokio-runtime"]` in Cargo.toml.3694. **Rust async context**: `extract_file` is async. Use `#[tokio::main]` or call from an async context.3705. **CLI --format vs --output-format**: `--format` controls CLI output (text/json). `--output-format` controls content format (plain/markdown/djot/html).3716. **Node.js extractFile signature**: `extractFile(path, mimeType?, config?)` — mimeType is the second arg (pass `null` to skip).3727. **Python detect_mime_type**: The function for detecting from bytes is `detect_mime_type(data)`. For paths use `detect_mime_type_from_path(path)`.3738. **Config file field names**: Use snake_case in TOML/YAML/JSON config files (e.g., `max_chars`, `max_overlap`, `pdf_options`).374375## Supported Formats (Summary)376377| Category | Extensions |378| ----------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |379| **PDF** | `.pdf` |380| **Word** | `.docx`, `.odt` |381| **Spreadsheets** | `.xlsx`, `.xlsm`, `.xlsb`, `.xls`, `.xla`, `.xlam`, `.xltm`, `.ods` |382| **Presentations** | `.pptx`, `.ppt`, `.ppsx` |383| **eBooks** | `.epub`, `.fb2` |384| **Images** | `.png`, `.jpg`, `.jpeg`, `.gif`, `.webp`, `.bmp`, `.tiff`, `.tif`, `.jp2`, `.jpx`, `.jpm`, `.mj2`, `.jbig2`, `.jb2`, `.pnm`, `.pbm`, `.pgm`, `.ppm`, `.svg` |385| **Markup** | `.html`, `.htm`, `.xhtml`, `.xml` |386| **Data** | `.json`, `.yaml`, `.yml`, `.toml`, `.csv`, `.tsv` |387| **Text** | `.txt`, `.md`, `.markdown`, `.djot`, `.rst`, `.org`, `.rtf` |388| **Email** | `.eml`, `.msg` |389| **Archives** | `.zip`, `.tar`, `.tgz`, `.gz`, `.7z` |390| **Academic** | `.bib`, `.biblatex`, `.ris`, `.nbib`, `.enw`, `.csl`, `.tex`, `.latex`, `.typ`, `.jats`, `.ipynb`, `.docbook`, `.opml`, `.pod`, `.mdoc`, `.troff` |391392See [references/supported-formats.md](references/supported-formats.md) for the complete format reference with MIME types.393394## Additional Resources395396Detailed reference files for specific topics:397398- **[Python API Reference](references/python-api.md)** — All functions, config classes, plugin protocols, exact signatures399- **[Node.js API Reference](references/nodejs-api.md)** — All functions, TypeScript interfaces, worker pool APIs400- **[Rust API Reference](references/rust-api.md)** — All functions with feature gates, structs, Cargo.toml examples401- **[CLI Reference](references/cli-reference.md)** — All commands, flags, config precedence, exit codes402- **[Configuration Reference](references/configuration.md)** — TOML/YAML/JSON formats, auto-discovery, env vars, full schema403- **[Supported Formats](references/supported-formats.md)** — All 85+ formats with file extensions and MIME types404- **[Advanced Features](references/advanced-features.md)** — Plugins, embeddings, MCP server, API server, security limits405- **[Other Language Bindings](references/other-bindings.md)** — Go, Ruby, Java, C#, PHP, Elixir, WASM, Docker406407Full documentation: <https://docs.kreuzberg.dev>408GitHub: <https://github.com/kreuzberg-dev/kreuzberg>