kreuzberg 4.3.0

High-performance document intelligence library for Rust. Extract text, metadata, and structured data from PDFs, Office documents, images, and 75+ formats with async/sync APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! MCP tool implementations.
//!
//! This module organizes MCP tools by category: extraction, cache management, and MIME detection.

mod cache;
mod extraction;
mod mime;

pub(in crate::mcp) use cache::CacheTool;
pub(in crate::mcp) use extraction::ExtractionTool;
pub(in crate::mcp) use mime::MimeTypeTool;