Added preservation of request handler params #248
+144
−12
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fix(protocol): Ensure request params reach handlers and fix progress notifications
Motivation and Context
This PR fixes two critical issues within the base
Protocol
class (src/shared/protocol.ts
):params
object sent by clients inJSONRPCRequest
messages was being lost before reaching handlers registered viasetRequestHandler
. This forced developers(me) to implement workarounds. The root cause was identified as incorrect internal schema handling within thesetRequestHandler
wrapper logic.notifications/progress
messages, causingonprogress
callbacks provided inclient.request
options to fail.This fix ensures handlers receive expected
params
reliably and progress updates function correctly, improving SDK usability and correctness.How Has This Been Tested?
npm test
).src/shared/protocol.test.ts
now pass.request handler params preservation
) tosrc/shared/protocol.test.ts
specifically verifying thatparams
objects are correctly preserved and passed to handlers registered viasetRequestHandler
. This test failed before the fix and passes with the fix applied.Breaking Changes
Types of changes
Checklist
request handler params preservation
test)Additional context
params
loss refines internal Zod schema usage insetRequestHandler
/setNotificationHandler
to correctly incorporate user-definedparams
schemas.First contribution.