use std::borrow::Cow;
use database_mcp_server::pagination::Pager;
use database_mcp_server::types::{ListTablesRequest, ListTablesResponse};
use database_mcp_sql::Connection as _;
use database_mcp_sql::sanitize::{quote_literal, validate_ident};
use rmcp::handler::server::router::tool::{AsyncTool, ToolBase};
use rmcp::model::{ErrorData, ToolAnnotations};
use crate::MysqlHandler;
pub(crate) struct ListTablesTool;
impl ListTablesTool {
const NAME: &'static str = "listTables";
const TITLE: &'static str = "List Tables";
const DESCRIPTION: &'static str = r#"List all tables in a specific database. Requires `database` — call `listDatabases` first to discover available databases.
<usecase>
Use when:
- Exploring a database to find relevant tables
- Verifying a table exists before querying or inspecting it
- The user asks what tables are in a database
</usecase>
<examples>
✓ "What tables are in the mydb database?" → listTables(database="mydb")
✓ "Does a users table exist?" → listTables to check
✗ "Show me the columns of users" → use getTableSchema instead
</examples>
<what_it_returns>
A sorted JSON array of table name strings.
</what_it_returns>
<pagination>
Paginated. Pass the prior response's `nextCursor` as `cursor` to fetch the next page.
</pagination>"#;
}
impl ToolBase for ListTablesTool {
type Parameter = ListTablesRequest;
type Output = ListTablesResponse;
type Error = ErrorData;
fn name() -> Cow<'static, str> {
Self::NAME.into()
}
fn title() -> Option<String> {
Some(Self::TITLE.into())
}
fn description() -> Option<Cow<'static, str>> {
Some(Self::DESCRIPTION.into())
}
fn annotations() -> Option<ToolAnnotations> {
Some(
ToolAnnotations::new()
.read_only(true)
.destructive(false)
.idempotent(true)
.open_world(false),
)
}
}
impl AsyncTool<MysqlHandler> for ListTablesTool {
async fn invoke(handler: &MysqlHandler, params: Self::Parameter) -> Result<Self::Output, Self::Error> {
handler.list_tables(params).await
}
}
impl MysqlHandler {
pub async fn list_tables(
&self,
ListTablesRequest { database, cursor }: ListTablesRequest,
) -> Result<ListTablesResponse, ErrorData> {
validate_ident(&database)?;
let pager = Pager::new(cursor, self.config.page_size);
let query = format!(
r"
SELECT CAST(TABLE_NAME AS CHAR)
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = {}
ORDER BY TABLE_NAME
LIMIT {} OFFSET {}",
quote_literal(&database),
pager.limit(),
pager.offset(),
);
let rows: Vec<String> = self.connection.fetch_scalar(query.as_str(), None).await?;
let (tables, next_cursor) = pager.finalize(rows);
Ok(ListTablesResponse { tables, next_cursor })
}
}