//! MCP (Model Context Protocol) client for the `TraitClaw` AI agent framework.
//!
//! Connects to MCP servers over stdio or SSE transport, discovers tools via
//! `tools/list`, and routes tool calls via `tools/call`. MCP tools implement
//! [`ErasedTool`] so they work seamlessly alongside native tools.
//!
//! # Quick Start
//!
//! ```rust,no_run
//! use traitclaw_mcp::McpServer;
//!
//! # async fn example() -> traitclaw_core::Result<()> {
//! let server = McpServer::stdio("npx", &["@modelcontextprotocol/server-filesystem"]).await?;
//! let tools = server.tools(); // Vec<Arc<dyn ErasedTool>>
//! # Ok(())
//! # }
//! ```
pub use McpServer;
pub use McpTool;
/// Prelude re-exports for convenient use.