-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmcp_client_handle_message.rs
144 lines (139 loc) · 6.01 KB
/
mcp_client_handle_message.rs
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
use rust_mcp_schema::schema_utils::*;
use rust_mcp_schema::*;
use std::str::FromStr;
type AppError = JsonrpcErrorError;
const SAMPLE_PAYLOAD: &str = r#"
{
"id": 0,
"jsonrpc": "2.0",
"result": {
"protocolVersion": "2024-11-05",
"capabilities": {
"prompts": {},
"resources": {
"subscribe": true
},
"tools": {},
"logging": {}
},
"serverInfo": {
"name": "example-servers/everything",
"version": "1.0.0"
}
}
}
"#;
fn main() -> std::result::Result<(), AppError> {
handle_message(SAMPLE_PAYLOAD)?;
Ok(())
}
/// Deserialize the JSON-RPC message into the appropriate MCP type and print it with dbg!() macro .
fn handle_message(message_payload: &str) -> std::result::Result<(), AppError> {
// Deserialize message into ServerMessage.
// ServerMessage represents a message sent by an MCP Server and received by an MCP Client.
let mcp_message = ServerMessage::from_str(message_payload)?;
match mcp_message {
// Check if the message is a Request
ServerMessage::Request(server_message) => match server_message.request {
// Check if it's a standard ServerRequest (not a CustomRequest)
RequestFromServer::ServerRequest(server_request) => {
// Handle different ServerNotifications
match server_request {
ServerRequest::PingRequest(ping_request) => {
dbg!(ping_request);
}
ServerRequest::CreateMessageRequest(create_message_request) => {
dbg!(create_message_request);
}
ServerRequest::ListRootsRequest(list_roots_request) => {
dbg!(list_roots_request);
}
}
}
// Check if it's a CustomRequest; the value can be deserialized into your own custom types.
RequestFromServer::CustomRequest(value) => {
dbg!(value);
}
},
// Check if the message is a Notification
ServerMessage::Notification(server_message) => match server_message.notification {
// Check if it's a standard ServerNotification (not a CustomNotification)
NotificationFromServer::ServerNotification(server_notification) => {
// Handle different ServerNotifications
match server_notification {
ServerNotification::CancelledNotification(cancelled_notification) => {
dbg!(cancelled_notification);
}
ServerNotification::ProgressNotification(progress_notification) => {
dbg!(progress_notification);
}
ServerNotification::ResourceListChangedNotification(resource_list_changed_notification) => {
dbg!(resource_list_changed_notification);
}
ServerNotification::ResourceUpdatedNotification(resource_updated_notification) => {
dbg!(resource_updated_notification);
}
ServerNotification::PromptListChangedNotification(prompt_list_changed_notification) => {
dbg!(prompt_list_changed_notification);
}
ServerNotification::ToolListChangedNotification(tool_list_changed_notification) => {
dbg!(tool_list_changed_notification);
}
ServerNotification::LoggingMessageNotification(logging_message_notification) => {
dbg!(logging_message_notification);
}
}
}
// Check if it's a CustomNotification; the value can be deserialized into your custom types.
NotificationFromServer::CustomNotification(value) => {
dbg!(value);
}
},
// Check if the message is a Response
ServerMessage::Response(server_message) => match server_message.result {
// Check if it's a standard ServerResult (not a CustomResult)
ResultFromServer::ServerResult(server_result) => match server_result {
ServerResult::Result(result) => {
dbg!(result);
}
ServerResult::InitializeResult(initialize_result) => {
dbg!(initialize_result);
}
ServerResult::ListResourcesResult(list_resources_result) => {
dbg!(list_resources_result);
}
#[cfg(feature = "2024_11_05")]
ServerResult::ListResourceTemplatesResult(list_resource_templates_result) => {
dbg!(list_resource_templates_result);
}
ServerResult::ReadResourceResult(read_resource_result) => {
dbg!(read_resource_result);
}
ServerResult::ListPromptsResult(list_prompts_result) => {
dbg!(list_prompts_result);
}
ServerResult::GetPromptResult(get_prompt_result) => {
dbg!(get_prompt_result);
}
ServerResult::ListToolsResult(list_tools_result) => {
dbg!(list_tools_result);
}
ServerResult::CallToolResult(call_tool_result) => {
dbg!(call_tool_result);
}
ServerResult::CompleteResult(complete_result) => {
dbg!(complete_result);
}
},
// Check if it's a CustomResult; the value can be deserialized into your custom types.
ResultFromServer::CustomResult(value) => {
dbg!(value);
}
},
// Check if it's a Error message
ServerMessage::Error(server_message) => {
dbg!(server_message);
}
}
Ok(())
}