dbmcp-sqlite 0.10.1

SQLite for dbmcp
Documentation
//! MCP tool definitions for the `SQLite` backend.
//!
//! Each tool is defined in its own submodule as a ZST that implements
//! [`ToolBase`](rmcp::handler::server::router::tool::ToolBase) and
//! [`AsyncTool`](rmcp::handler::server::router::tool::AsyncTool).
//! Router assembly happens in [`crate::handler`].

mod drop_table;
mod explain_query;
mod list_tables;
mod list_triggers;
mod list_views;
mod read_query;
mod write_query;

pub(crate) use drop_table::DropTableTool;
pub(crate) use explain_query::ExplainQueryTool;
pub(crate) use list_tables::ListTablesTool;
pub(crate) use list_triggers::ListTriggersTool;
pub(crate) use list_views::ListViewsTool;
pub(crate) use read_query::ReadQueryTool;
pub(crate) use write_query::WriteQueryTool;