1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! 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 for the `get_table_schema` tool.
/// Request for the `drop_table` tool.
/// Request for the `read_query` and `write_query` tools.
/// Request for the `explain_query` tool.