Open
Conversation
…-52e03de6c86c This updates to the latest HEAD of the go-sdk which includes: - Schema caching for stateless deployments (perf improvement) - Allow header on 405 responses per RFC 9110
Contributor
There was a problem hiding this comment.
Pull request overview
This PR upgrades the go-sdk dependency from v1.2.0 to the latest HEAD commit, bringing performance improvements and RFC compliance fixes. The update removes unused color-related dependencies and modernizes the build configuration.
Changes:
- Upgraded
github.com/modelcontextprotocol/go-sdkto latest HEAD (52e03de6c86c) for schema caching and RFC 9110 compliance - Removed unused
fatih/colorand related dependencies from go.mod - Modernized
go-licensesinstallation to use v2 module path - Simplified Dockerfile build command to use directory path instead of specific file
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| go.mod | Updated go-sdk to HEAD commit and removed unused color dependencies |
| go.sum | Reflected dependency changes with updated checksums |
| script/licenses | Simplified go-licenses installation using v2 module path |
| Dockerfile | Updated build command to reference directory instead of main.go file |
Auto-generated by license-check workflow
IrynaKulakova
approved these changes
Feb 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Upgrades
github.com/modelcontextprotocol/go-sdkfrom v1.2.0 to the latest HEAD commit (52e03de6c86c).Changes in go-sdk
This update includes:
Notes
The schema caching feature is available via
ServerOptions.SchemaCachefor stateless deployments (like the remote server). The stdio server doesn't benefit much since it's long-lived, but this keeps us on the latest SDK.