-
Notifications
You must be signed in to change notification settings - Fork 632
Expand file tree
/
Copy pathstreamable_http.rs
More file actions
50 lines (46 loc) · 1.67 KB
/
Copy pathstreamable_http.rs
File metadata and controls
50 lines (46 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
use anyhow::Result;
use rmcp::{
ClientLifecycleMode, ClientServiceExt,
model::{
CallToolRequestParams, ClientCapabilities, ClientInfo, Implementation, ProtocolVersion,
},
transport::StreamableHttpClientTransport,
};
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
#[tokio::main]
async fn main() -> Result<()> {
tracing_subscriber::registry()
.with(
tracing_subscriber::EnvFilter::try_from_default_env()
.unwrap_or_else(|_| format!("info,{}=debug", env!("CARGO_CRATE_NAME")).into()),
)
.with(tracing_subscriber::fmt::layer())
.init();
let transport = StreamableHttpClientTransport::from_uri("http://localhost:8000/mcp");
let client_info = ClientInfo::new(
ClientCapabilities::default(),
Implementation::new("streamable-http-client", "0.0.1"),
);
let client = client_info
.serve_with_lifecycle(
transport,
ClientLifecycleMode::Auto {
preferred_versions: vec![ProtocolVersion::V_2026_07_28],
legacy_version: Some(ProtocolVersion::V_2025_11_25),
},
)
.await
.inspect_err(|e| {
tracing::error!("client error: {:?}", e);
})?;
let server_info = client.peer_info();
tracing::info!("Connected to server: {server_info:#?}");
let tools = client.list_tools(Default::default()).await?;
tracing::info!("Available tools: {tools:#?}");
let tool_result = client
.call_tool(CallToolRequestParams::new("increment"))
.await?;
tracing::info!("Tool result: {tool_result:#?}");
client.cancel().await?;
Ok(())
}