database-mcp-backend 0.5.1

Backend for database-mcp
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared backend utilities: error types, SQL validation, identifier checking, and request types.
//!
//! Provides [`AppError`] for error handling, validation utilities, and shared
//! MCP tool request types used by all database backend implementations.

pub mod error;
pub mod identifier;
pub mod types;
pub mod validation;

pub use error::AppError;
pub use types::{CreateDatabaseRequest, GetTableSchemaRequest, ListTablesRequest, QueryRequest};