toondb_mcp/lib.rs
1//! ToonDB MCP Library
2//!
3//! This module exposes the MCP server for embedding in other applications
4//! like ToonDB Studio.
5
6pub mod framing;
7pub mod jsonrpc;
8pub mod mcp;
9pub mod tools;
10
11// Re-export key types for embedding
12pub use mcp::McpServer;
13pub use jsonrpc::{RpcRequest, RpcResponse};