database-mcp-mysql 0.5.2

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

mod adapter;
mod handler;
mod operations;
mod schema;
mod tools;

pub use adapter::MysqlAdapter;