1//! `SQLite` backend crate. 2//! 3//! Provides [`SqliteAdapter`] for database operations with MCP 4//! tool registration via [`ServerHandler`](rmcp::ServerHandler). 5 6mod adapter; 7mod handler; 8mod operations; 9mod schema; 10mod tools; 11pub mod types; 12 13pub use adapter::SqliteAdapter;