Skip to main content

database_mcp_sqlite/
lib.rs

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