database-mcp-sqlite 0.5.1

SQLite for database-mcp
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `SQLite` backend crate.
//!
//! Provides [`SqliteBackend`] for database operations and
//! [`SqliteHandler`] implementing the MCP `ServerHandler` trait.

mod connection;
mod handler;
mod operations;
mod schema;

pub use connection::SqliteBackend;
pub use handler::SqliteHandler;