turbomcp-client 3.0.8

MCP client with full protocol support, bidirectional communication, and plugin middleware
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Tests for MCP client functionality

#[test]
fn test_client_functionality() {
    // Test basic client functionality
    use turbomcp_client::{ClientBuilder, ClientCapabilities};

    let _builder = ClientBuilder::new();
    let _capabilities = ClientCapabilities::default();

    // Compilation test - no runtime assertions needed
}