Skip to content

Commit 8f2e53c

Browse files
Fix a typo in progress notification method name
It shoud be `notifications/progress` not `notification/progress` (not singular). This matches the latest spec. https://modelcontextprotocol.io/specification/2025-06-18/basic/utilities/progress
1 parent f22aa1f commit 8f2e53c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/lib/hooks/useConnection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export function useConnection({
167167
// Add progress notification to `Server Notification` window in the UI
168168
if (onNotification) {
169169
onNotification({
170-
method: "notification/progress",
170+
method: "notifications/progress",
171171
params,
172172
});
173173
}

0 commit comments

Comments
 (0)