Skip to main content

tl_mcp/
lib.rs

1//! MCP (Model Context Protocol) integration for ThinkingLanguage.
2//!
3//! Provides client and server MCP support over stdio and HTTP transports.
4
5pub mod client;
6pub mod convert;
7pub mod error;
8pub mod server;
9
10// Re-export key types for convenience
11pub use client::{McpClient, SamplingCallback, SamplingRequest, SamplingResponse, TlClientHandler};
12pub use error::McpError;
13
14// Re-export rmcp types used by other crates
15pub use rmcp;