Rust Requires Chilkat v11.6.0+
Rust
Configure MCP Connection Settings
See more MCP Client Examples
Demonstrates Mcp.SetConnectionSettings, which copies connection settings -- such as an HTTP proxy, SOCKS proxy, bind IP address, and TLS options -- from a Socket and applies them before connecting.
Background. This is optional; if not used, a direct connection is made. It is useful when the MCP server must be reached through a proxy or with specific TLS settings.
Chilkat Rust Downloads
let mcp = chilkat::Mcp::new();
// Configure connection settings on a Socket -- such as an HTTP proxy, SOCKS proxy, bind IP address,
// or TLS options -- and apply them to the MCP client before connecting. This is optional; if not
// used, a direct connection is made.
let sock = chilkat::Socket::new();
sock.set_http_proxy_hostname("proxy.example.com");
sock.set_http_proxy_port(8080);
if mcp.set_connection_settings(&sock).is_err() {
println!("{}", mcp.last_error_text());
return;
}
if mcp.connect("https://learn.microsoft.com/api/mcp").is_err() {
println!("{}", mcp.last_error_text());
return;
}
println!("Connected using the configured connection settings.");