database-mcp-postgres 0.7.0

PostgreSQL for database-mcp
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `PostgreSQL` backend crate.
//!
//! Provides [`PostgresHandler`] for database operations with MCP
//! tool registration via [`ServerHandler`](rmcp::ServerHandler).

mod connection;
mod handler;
mod tools;
pub mod types;

pub use handler::PostgresHandler;