//! SQLite-specific MCP tool request types.
//!
//! Unlike `MySQL` and `PostgreSQL`, `SQLite` operates on a single file and
//! has no database selection. These types omit the `database_name`
//! field present in the shared server types.
use schemars;
use JsonSchema;
use Deserialize;
/// Request to get a table's schema.
/// Request for `read_query` and `write_query` tools.