We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b398c commit b328051Copy full SHA for b328051
mcp/src/main/java/io/modelcontextprotocol/server/McpSyncServerExchange.java
@@ -108,11 +108,11 @@ public void loggingNotification(LoggingMessageNotification loggingMessageNotific
108
}
109
110
/**
111
- * Sends a ping request to the client.
112
- * @return A Mono that completes with clients's ping response
+ * Sends a synchronous ping request to the client.
+ * @return
113
*/
114
- public void ping() {
115
- this.exchange.ping().block();
+ public Object ping() {
+ return this.exchange.ping().block();
116
117
118
0 commit comments