use rmcp::model::{Implementation, ServerCapabilities, ServerInfo};
const NAME: &str = "database-mcp";
const VERSION: &str = env!("CARGO_PKG_VERSION");
const TITLE: &str = "Database MCP Server";
const HOMEPAGE: &str = env!("CARGO_PKG_HOMEPAGE");
#[must_use]
pub fn server_info() -> ServerInfo {
let capabilities = ServerCapabilities::builder().enable_tools().build();
let server_info = Implementation::new(NAME, VERSION)
.with_title(TITLE)
.with_website_url(HOMEPAGE);
ServerInfo::new(capabilities).with_server_info(server_info)
}