Expand description
SQLite-specific MCP tool request types.
Unlike MySQL and PostgreSQL, SQLite operates on a single file and
has no database selection, so these types omit the database field
present in the shared server types. ListEntries and
ListTablesResponse live in the shared dbmcp-server crate; they are
re-exported here so call sites can keep importing them from
crate::types.
Structs§
- Drop
Table Request - Request for the
dropTabletool. - Explain
Query Request - Request for the
explainQuerytool. - List
Tables Request - Request for the
SQLitelistTablestool — supports optional search filter and detailed mode. - List
Tables Response - Response for the
listTablestool. - List
Triggers Request - Request for the
SQLitelistTriggerstool — supports optional search filter and detailed mode. - List
Views Request - Request for the
listViewstool. - Query
Request - Request for the
writeQuerytool. - Read
Query Request - Request for the
readQuerytool.
Enums§
- List
Entries - Two-shape listing payload: bare names in brief mode, name-keyed metadata in detailed mode.