use database_mcp_config::DatabaseConfig;
use database_mcp_server::{Server, server_info};
use rmcp::RoleServer;
use rmcp::handler::server::router::tool::ToolRouter;
use rmcp::handler::server::tool::ToolCallContext;
use rmcp::model::{CallToolRequestParams, CallToolResult, ListToolsResult, PaginatedRequestParams, ServerInfo, Tool};
use rmcp::service::RequestContext;
use rmcp::{ErrorData, ServerHandler};
use crate::connection::SqliteConnection;
use crate::tools::{
DropTableTool, ExplainQueryTool, GetTableSchemaTool, ListTablesTool, ReadQueryTool, WriteQueryTool,
};
const DESCRIPTION: &str = "Database MCP Server for SQLite";
const INSTRUCTIONS: &str = r"## Workflow
1. Call `list_tables` to discover tables in the connected database.
2. Call `get_table_schema` with a `table_name` to inspect columns, types, and foreign keys before writing queries.
3. Use `read_query` for read-only SQL (SELECT).
4. Use `write_query` for data changes (INSERT, UPDATE, DELETE, CREATE, ALTER, DROP).
5. Use `explain_query` to analyze query execution plans and diagnose slow queries.
6. Use `drop_table` to remove a table from the database.
## Constraints
- The `write_query` and `drop_table` tools are hidden when read-only mode is active.
- Multi-statement queries are not supported. Send one statement per request.";
#[derive(Clone)]
pub struct SqliteHandler {
pub(crate) config: DatabaseConfig,
pub(crate) connection: SqliteConnection,
tool_router: ToolRouter<Self>,
}
impl std::fmt::Debug for SqliteHandler {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("SqliteHandler")
.field("read_only", &self.config.read_only)
.field("connection", &self.connection)
.finish_non_exhaustive()
}
}
impl SqliteHandler {
#[must_use]
pub fn new(config: &DatabaseConfig) -> Self {
Self {
config: config.clone(),
connection: SqliteConnection::new(config),
tool_router: build_tool_router(config.read_only),
}
}
}
impl From<SqliteHandler> for Server {
fn from(handler: SqliteHandler) -> Self {
Self::new(handler)
}
}
fn build_tool_router(read_only: bool) -> ToolRouter<SqliteHandler> {
let mut router = ToolRouter::new()
.with_async_tool::<ListTablesTool>()
.with_async_tool::<GetTableSchemaTool>()
.with_async_tool::<ReadQueryTool>()
.with_async_tool::<ExplainQueryTool>();
if !read_only {
router = router
.with_async_tool::<WriteQueryTool>()
.with_async_tool::<DropTableTool>();
}
router
}
impl ServerHandler for SqliteHandler {
fn get_info(&self) -> ServerInfo {
let mut info = server_info();
info.server_info.description = Some(DESCRIPTION.into());
info.instructions = Some(INSTRUCTIONS.into());
info
}
async fn call_tool(
&self,
request: CallToolRequestParams,
context: RequestContext<RoleServer>,
) -> Result<CallToolResult, ErrorData> {
let tcc = ToolCallContext::new(self, request, context);
self.tool_router.call(tcc).await
}
async fn list_tools(
&self,
_request: Option<PaginatedRequestParams>,
_context: RequestContext<RoleServer>,
) -> Result<ListToolsResult, ErrorData> {
Ok(ListToolsResult {
tools: self.tool_router.list_all(),
next_cursor: None,
meta: None,
})
}
fn get_tool(&self, name: &str) -> Option<Tool> {
self.tool_router.get(name).cloned()
}
}
#[cfg(test)]
mod tests {
use super::*;
use database_mcp_config::DatabaseBackend;
fn handler(read_only: bool) -> SqliteHandler {
SqliteHandler::new(&DatabaseConfig {
backend: DatabaseBackend::Sqlite,
name: Some(":memory:".into()),
read_only,
..DatabaseConfig::default()
})
}
#[tokio::test]
async fn router_exposes_all_six_tools_in_read_write_mode() {
let router = handler(false).tool_router;
for name in [
"list_tables",
"get_table_schema",
"drop_table",
"read_query",
"write_query",
"explain_query",
] {
assert!(router.has_route(name), "missing tool: {name}");
}
}
#[tokio::test]
async fn router_hides_write_tools_in_read_only_mode() {
let router = handler(true).tool_router;
assert!(router.has_route("list_tables"));
assert!(router.has_route("get_table_schema"));
assert!(router.has_route("read_query"));
assert!(router.has_route("explain_query"));
assert!(!router.has_route("write_query"));
assert!(!router.has_route("drop_table"));
}
#[tokio::test]
async fn list_tables_annotations() {
let router = handler(false).tool_router;
let tool = router.get("list_tables").expect("list_tables registered");
let annotations = tool.annotations.as_ref().expect("annotations present");
assert_eq!(annotations.read_only_hint, Some(true));
assert_eq!(annotations.destructive_hint, Some(false));
assert_eq!(annotations.idempotent_hint, Some(true));
assert_eq!(annotations.open_world_hint, Some(false));
}
}