use std::borrow::Cow;
use database_mcp_server::AppError;
use database_mcp_server::types::{QueryRequest, QueryResponse};
use rmcp::handler::server::router::tool::{AsyncTool, ToolBase};
use rmcp::model::{ErrorData, ToolAnnotations};
use crate::MysqlHandler;
pub(crate) struct WriteQueryTool;
impl WriteQueryTool {
const NAME: &'static str = "write_query";
const DESCRIPTION: &'static str = "Execute a write SQL query (INSERT, UPDATE, DELETE, CREATE, ALTER, DROP).";
}
impl ToolBase for WriteQueryTool {
type Parameter = QueryRequest;
type Output = QueryResponse;
type Error = ErrorData;
fn name() -> Cow<'static, str> {
Self::NAME.into()
}
fn description() -> Option<Cow<'static, str>> {
Some(Self::DESCRIPTION.into())
}
fn annotations() -> Option<ToolAnnotations> {
Some(
ToolAnnotations::new()
.read_only(false)
.destructive(true)
.idempotent(false)
.open_world(true),
)
}
}
impl AsyncTool<MysqlHandler> for WriteQueryTool {
async fn invoke(handler: &MysqlHandler, params: Self::Parameter) -> Result<Self::Output, Self::Error> {
Ok(handler.write_query(¶ms).await?)
}
}
impl MysqlHandler {
pub async fn write_query(&self, request: &QueryRequest) -> Result<QueryResponse, AppError> {
let db = Some(request.database_name.trim()).filter(|s| !s.is_empty());
let rows = self.query_to_json(&request.query, db).await?;
Ok(QueryResponse { rows })
}
}