toondb-mcp 0.3.4

Minimal MCP server for ToonDB - AI-native database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! ToonDB MCP Library
//! 
//! This module exposes the MCP server for embedding in other applications
//! like ToonDB Studio.

pub mod framing;
pub mod jsonrpc;
pub mod mcp;
pub mod tools;

// Re-export key types for embedding
pub use mcp::McpServer;
pub use jsonrpc::{RpcRequest, RpcResponse};