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