-
Notifications
You must be signed in to change notification settings - Fork 436
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates SDK error codes to use JSON-RPC server error range #103
Updates SDK error codes to use JSON-RPC server error range #103
Conversation
The SDK's custom error codes were previously using arbitrary negative numbers (-1, -2) which could conflict with application-specific error codes. This change: - Updates ConnectionClosed from -1 to -32000 - Updates RequestTimeout from -2 to -32001 - Keeps standard JSON-RPC error codes unchanged - Adds documentation explaining the server error range usage This modification ensures compliance with the JSON-RPC 2.0 specification, which reserves -32000 to -32099 for implementation-defined server errors. This change allows applications to freely use other error code ranges without potential conflicts with SDK-generated errors. Issue: modelcontextprotocol#85
…est timeout and connection closed scenarios
Hi, @jspahrsummers let me know if any changes are required in this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! Conceptually this looks good—just a few concrete suggestions to fix up.
src/types.ts
Outdated
@@ -100,13 +100,16 @@ export const JSONRPCResponseSchema = z | |||
.strict(); | |||
|
|||
/** | |||
* An incomplete set of error codes that may appear in JSON-RPC responses. | |||
*/ | |||
* @author : Sumitesh Naithani |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this by-line. Your contribution will definitely be in the Git commit log and repository history—we just don't want to end up having annotations like this everywhere in the code. 🙏
src/types.ts
Outdated
* @link : https://docs.trafficserver.apache.org/en/latest/developer-guide/jsonrpc/jsonrpc-node-errors.en.html#standard-errors | ||
* @description : An incomplete set of error codes that may appear in JSON-RPC responses. | ||
* @note : SDK-specific errors should use the server error range (-32000 to -32099), as per JSON-RPC 2.0 specification. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're not using a documentation generator that will make use of these kind of @ annotations right now. Can you please reformat as a normal documentation comment?
src/shared/protocol.test.ts
Outdated
result: z.string(), | ||
}); | ||
await protocol.request(request, mockSchema, { | ||
timeout: 100, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't want to perform any waiting in tests, however small, as this will degrade overall testing times:
timeout: 100, | |
timeout: 0, |
…ol test timeout to 0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the fixes—looks great!
…/fix-error-codes Updates SDK error codes to use JSON-RPC server error range
Updates SDK error codes to use the JSON-RPC server error range (-32000 to -32099) instead of arbitrary negative numbers.
Motivation and Context
The SDK was using arbitrary negative numbers (-1, -2) for custom error codes, which could potentially conflict with application-specific error codes. By restricting SDK errors to the JSON-RPC server error range (-32000 to -32099), we ensure compliance with the specification and leave other ranges available for application usage. This change makes the error handling more standardized and prevents potential conflicts.
How Has This Been Tested?
Breaking Changes
This may be a breaking change as it modifies error codes that applications might be checking against. Applications that explicitly check for -1 or -2 error codes will need to update their checks to use the new values (-32000 and -32001 respectively).
Types of changes
Checklist
Additional context
This change aligns with JSON-RPC 2.0 specification's recommendation for implementation-defined server errors. The specification reserves codes -32000 to -32099 for this purpose, making it a natural fit for SDK-generated errors. I've chosen to start at -32000 and -32001, leaving plenty of room for additional SDK error codes in the future while maintaining a clear separation from application-specific error codes.