database-mcp-server 0.5.1

Server for database-mcp
Documentation
//! Shared MCP server utilities.
//!
//! Provides helper functions used by per-backend handler implementations.

use rmcp::model::{ErrorData, Implementation, ServerCapabilities, ServerInfo};

/// Converts a displayable error into an MCP [`ErrorData`].
pub fn map_error(e: impl std::fmt::Display) -> ErrorData {
    ErrorData::internal_error(e.to_string(), None)
}

/// Returns the shared [`ServerInfo`] for all handler implementations.
///
/// Provides consistent server identity, capabilities, and instructions
/// across all database backends.
#[must_use]
pub fn server_info() -> ServerInfo {
    ServerInfo::new(ServerCapabilities::builder().enable_tools().build())
        .with_server_info(Implementation::new(
            env!("CARGO_PKG_NAME"),
            env!("CARGO_PKG_VERSION"),
        ))
        .with_instructions(
            "Database MCP Server - provides database exploration and query tools for MySQL, MariaDB, PostgreSQL, and SQLite",
        )
}