Skip to main content

database_mcp_server/
lib.rs

1//! Shared MCP server utilities and request types.
2//!
3//! Provides [`types`] for tool request/response schemas,
4//! [`pagination`] cursor helpers, and the [`Server`] wrapper plus
5//! [`server_info`] used by per-backend server implementations.
6
7pub mod pagination;
8mod server;
9pub mod types;
10
11pub use pagination::{Cursor, Pager};
12pub use server::{Server, server_info};