Skip to content

Commit ea0bfb4

Browse files
committed
Added message field to ProgressNotification
Signed-off-by: jitokim <pigberger70@gmail.com>
1 parent 41c6bd9 commit ea0bfb4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mcp/src/main/java/io/modelcontextprotocol/spec/McpSchema.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,8 @@ public record PaginatedResult(@JsonProperty("nextCursor") String nextCursor) {
11061106
public record ProgressNotification(// @formatter:off
11071107
@JsonProperty("progressToken") String progressToken,
11081108
@JsonProperty("progress") double progress,
1109-
@JsonProperty("total") Double total) {
1109+
@JsonProperty("total") Double total,
1110+
@JsonProperty("message") String message) {
11101111
}// @formatter:on
11111112

11121113
/**

0 commit comments

Comments
 (0)