-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmcp_server_handle_message.rs
162 lines (135 loc) · 5.7 KB
/
mcp_server_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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
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",
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {
"sampling": {},
"roots": {
"listChanged": true
}
},
"clientInfo": {
"name": "mcp-inspector",
"version": "0.1.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 ClientMessage.
// ClientMessage represents a message sent by an MCP Client and received by an MCP Server.
let mcp_message = ClientMessage::from_str(message_payload)?;
match mcp_message {
// Check if the message is a Request
ClientMessage::Request(client_message) => match client_message.request {
// Check if it's a standard ClientRequest (not a CustomRequest)
RequestFromClient::ClientRequest(client_request) => match client_request {
ClientRequest::InitializeRequest(initialize_request) => {
dbg!(initialize_request);
}
ClientRequest::PingRequest(ping_request) => {
dbg!(ping_request);
}
ClientRequest::ListResourcesRequest(list_resources_request) => {
dbg!(list_resources_request);
}
#[cfg(feature = "2024_11_05")]
ClientRequest::ListResourceTemplatesRequest(list_resource_templates_request) => {
dbg!(list_resource_templates_request);
}
ClientRequest::ReadResourceRequest(read_resource_request) => {
dbg!(read_resource_request);
}
ClientRequest::SubscribeRequest(subscribe_request) => {
dbg!(subscribe_request);
}
ClientRequest::UnsubscribeRequest(unsubscribe_request) => {
dbg!(unsubscribe_request);
}
ClientRequest::ListPromptsRequest(list_prompts_request) => {
dbg!(list_prompts_request);
}
ClientRequest::GetPromptRequest(get_prompt_request) => {
dbg!(get_prompt_request);
}
ClientRequest::ListToolsRequest(list_tools_request) => {
dbg!(list_tools_request);
}
ClientRequest::CallToolRequest(call_tool_request) => {
dbg!(call_tool_request);
}
ClientRequest::SetLevelRequest(set_level_request) => {
dbg!(set_level_request);
}
ClientRequest::CompleteRequest(complete_request) => {
dbg!(complete_request);
}
},
// Check if it's a CustomRequest; the value can be deserialized into your own custom types.
RequestFromClient::CustomRequest(value) => {
dbg!(value);
}
},
// Check if the message is a Notification
ClientMessage::Notification(client_message) => match client_message.notification {
// Check if it's a standard ClientNotification (not a CustomNotification)
NotificationFromClient::ClientNotification(client_notification) => {
// Handle different ClientNotifications
match client_notification {
ClientNotification::CancelledNotification(cancelled_notification) => {
dbg!(cancelled_notification);
}
ClientNotification::InitializedNotification(initialized_notification) => {
dbg!(initialized_notification);
}
ClientNotification::ProgressNotification(progress_notification) => {
dbg!(progress_notification);
}
ClientNotification::RootsListChangedNotification(progress_notification) => {
dbg!(progress_notification);
}
}
}
// Check if it's a CustomNotification; the value can be deserialized into your custom types.
NotificationFromClient::CustomNotification(value) => {
dbg!(value);
}
},
// Check if the message is a Response
ClientMessage::Response(client_message) => match client_message.result {
// Check if it's a standard ClientResult (not a CustomResult)
ResultFromClient::ClientResult(client_result) => match client_result {
ClientResult::Result(_) => {
dbg!(client_result);
}
ClientResult::CreateMessageResult(create_message_result) => {
dbg!(create_message_result);
}
ClientResult::ListRootsResult(list_roots_result) => {
dbg!(list_roots_result);
}
},
// Check if it's a CustomResult; the value can be deserialized into your custom types.
ResultFromClient::CustomResult(value) => {
dbg!(value);
}
},
// Check if it's a Error message
ClientMessage::Error(client_error) => {
dbg!(client_error);
}
}
Ok(())
}