dbmcp-server 0.13.2

Server for dbmcp
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Shared MCP server utilities and request types.
//!
//! Provides [`types`] for tool request/response schemas,
//! [`pagination`] cursor helpers, the [`tool`] registry, [`schema`] input
//! and output schema generators, and the [`Server`] wrapper plus
//! [`server_info`] used by per-backend servers.

pub mod pagination;
pub mod schema;
mod server;
pub mod tool;
pub mod types;

pub use pagination::{Cursor, Pager};
pub use schema::{input_schema, output_schema};
pub use server::{Server, server_info};
pub use tool::{ToolRouterExt, ToolSpec};