Skip to main content

database_mcp_postgres/
lib.rs

1//! `PostgreSQL` backend crate.
2//!
3//! Provides [`PostgresHandler`] for database operations with MCP
4//! tool registration via [`ServerHandler`](rmcp::ServerHandler).
5
6mod handler;
7mod tools;
8pub mod types;
9
10pub use handler::PostgresHandler;