chore(deps): update module github.com/modelcontextprotocol/go-sdk to v1.6.1 #8

Open
sa-renovate wants to merge 1 commit from renovate/github.com-modelcontextprotocol-go-sdk-1.x into main
Member

This PR contains the following updates:

Package Type Update Change
github.com/modelcontextprotocol/go-sdk require minor v1.4.1v1.6.1

Release Notes

modelcontextprotocol/go-sdk (github.com/modelcontextprotocol/go-sdk)

v1.6.1

Compare Source

This release adds an MCPGODEBUG flag to opt out of the Content-Type check on POST requests.

Behavior Changes

Prior to v1.6.0 (v1.4.0...v1.5.0), the Content-Type check on POST requests was gated by the same disablecrossoriginprotection MCPGODEBUG flag as the cross-origin protection. In v1.6.0, the cross-origin protection was disabled by default (replaced by the opt-in enableoriginverification flag), but the Content-Type check was kept on unconditionally, leaving no way to disable it.
This release restores an escape hatch for both the Streamable HTTP and SSE transports: setting MCPGODEBUG=disablecontenttypecheck=1 skips the Content-Type: application/json validation on POST requests.
See #​957.

What's Changed

Full Changelog: https://github.com/modelcontextprotocol/go-sdk/compare/v1.6.0...v1.6.1

v1.6.0

Compare Source

This release is equivalent to v1.6.0-pre.1. Thank you to those who tested the pre-release.

In this release we introduce several smaller fixes and improvements, and we started working for release 2026-06-30. The main new feature is the introduction of ClientCredentialsHandler for OAuth client credentials grant.

Add ClientCredentialsHandler for OAuth client credentials grant

Added ClientCredentialsHandler implementing auth.OAuthHandler using the OAuth 2.0 Client Credentials grant (RFC 6749 Section 4.4) for service-to-service authentication with pre-registered credentials.

  • extauth: add ClientCredentialsHandler for OAuth client credentials grant by @​ravyg in #​895
  • feat: add automatic application_type inference by @​guglielmo-san in #​904

    New application_type field is added to the ClientRegistrationMetadata for DynamicClientRegistration. If not specified, the application_type will be inferred from the RedirectURIs. This implements SEP-837.

  • feat: HTTP Header Standardization for method and name by @​guglielmo-san in #​907

    By mirroring key fields from the JSON-RPC payload into HTTP headers, network intermediaries such as load balancers, proxies, and observability tools can route and process MCP traffic without deep packet inspection, reducing latency and computational overhead. This partially implements SEP-2243.

Behavior Changes

SetError Behavior Change

Previously the SetError method on CallToolResult always overwrote the Content field with the error text. Now SetError preserves the existing value if it has already been populated. You can restore the previous behavior by setting the environment variable seterroroverwrite=1.

Cross-Origin Protection Default Change

Previously (v1.4.1-v1.5.0) default (zero-value) cross-origin protection was applied when CrossOriginProtection in StreamableHTTPOptions was nil. Now cross-origin protection is not enabled by default when CrossOriginProtection is nil.
You can restore the previous behavior (enable by default) by setting enableoriginverification=1.

disablecrossoriginprotection was replaced by enableoriginverification after the default was changed to not enable cross-origin protection.

jsonescaping option was removed, according to plan.

Other Changes to the SDK

New Contributors

Full Changelog: https://github.com/modelcontextprotocol/go-sdk/compare/v1.5.0...v1.6.0-pre.1

v1.5.0

Compare Source

This release is equivalent to v1.5.0-pre.1. Thank you to those who tested the pre-release.

In this release we introduce important enhancements to the client-side OAuth flows. We also introduce several smaller fixes and improvements.

Stabilization of client-side OAuth APIs

As previously communicated, we're stabilizing the client-side OAuth APIs in v1.5.0. This means that the mcp_go_client_oauth build tag will no longer be required to compile the functionality and standard backward compatibility guarantees apply from now on.

Compared to the experimental support published in v1.4.0, we made some backwards incompatible changes:

  • auth.AuthorizationCodeHandlerConfig.AuthorizationCodeFetcher's type was changed from func(context.Context, *auth.AuthorizationArgs) (*auth.AuthorizationResult, error) to auth.AuthorizationCodeFetcher which is a reusable definition carrying the same underlying function type.
  • auth.AuthorizationCodeHandlerConfig.PreregisteredClientConfig was removed and replaced with auth.AuthorizationCodeHandlerConfig.PreregisteredClient which uses a newly introduced oauthex.ClientCredentials type. The type used previously (auth.PreregisteredClientConfig) has been removed.
  • Deprecated functionality has been removed from both auth and oauthex packages.

Enterprise Managed Authorization support added

Support for Enterprise Managed Authorization has been added to auth/extauth package. Huge thanks to @​radar07 for the implementation!

Note: this support is part of an official MCP extension and is not part of the core protocol. The support of this functionality is not covered by the principles defined in SDK tiers.

Other changes to the SDK

New Contributors

Full Changelog: https://github.com/modelcontextprotocol/go-sdk/compare/v1.4.1...v1.5.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/modelcontextprotocol/go-sdk](https://github.com/modelcontextprotocol/go-sdk) | require | minor | `v1.4.1` → `v1.6.1` | --- ### Release Notes <details> <summary>modelcontextprotocol/go-sdk (github.com/modelcontextprotocol/go-sdk)</summary> ### [`v1.6.1`](https://github.com/modelcontextprotocol/go-sdk/releases/tag/v1.6.1) [Compare Source](https://github.com/modelcontextprotocol/go-sdk/compare/v1.6.0...v1.6.1) This release adds an MCPGODEBUG flag to opt out of the Content-Type check on POST requests. #### Behavior Changes Prior to v1.6.0 (v1.4.0...v1.5.0), the Content-Type check on POST requests was gated by the same `disablecrossoriginprotection` MCPGODEBUG flag as the cross-origin protection. In v1.6.0, the cross-origin protection was disabled by default (replaced by the opt-in `enableoriginverification` flag), but the Content-Type check was kept on unconditionally, leaving no way to disable it. This release restores an escape hatch for both the Streamable HTTP and SSE transports: setting `MCPGODEBUG=disablecontenttypecheck=1` skips the `Content-Type: application/json` validation on POST requests. See [#&#8203;957](https://github.com/modelcontextprotocol/go-sdk/issues/957). #### What's Changed - mcp: add MCPGPDEBUG for opt-in Content-Type check by [@&#8203;guglielmo-san](https://github.com/guglielmo-san) in [#&#8203;972](https://github.com/modelcontextprotocol/go-sdk/pull/972) **Full Changelog**: <https://github.com/modelcontextprotocol/go-sdk/compare/v1.6.0...v1.6.1> ### [`v1.6.0`](https://github.com/modelcontextprotocol/go-sdk/releases/tag/v1.6.0) [Compare Source](https://github.com/modelcontextprotocol/go-sdk/compare/v1.5.0...v1.6.0) ***This release is equivalent to v1.6.0-pre.1. Thank you to those who tested the pre-release.*** In this release we introduce several smaller fixes and improvements, and we started working for release 2026-06-30. The main new feature is the introduction of `ClientCredentialsHandler` for OAuth client credentials grant. #### Add `ClientCredentialsHandler` for OAuth client credentials grant Added `ClientCredentialsHandler` implementing `auth.OAuthHandler` using the OAuth 2.0 Client Credentials grant (RFC 6749 Section 4.4) for service-to-service authentication with pre-registered credentials. - extauth: add ClientCredentialsHandler for OAuth client credentials grant by [@&#8203;ravyg](https://github.com/ravyg) in [#&#8203;895](https://github.com/modelcontextprotocol/go-sdk/pull/895) #### 2026-06-30 Release related PRs - feat: add automatic application\_type inference by [@&#8203;guglielmo-san](https://github.com/guglielmo-san) in [#&#8203;904](https://github.com/modelcontextprotocol/go-sdk/pull/904) New `application_type` field is added to the `ClientRegistrationMetadata` for DynamicClientRegistration. If not specified, the `application_type` will be inferred from the RedirectURIs. This implements [SEP-837](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/837). - feat: HTTP Header Standardization for method and name by [@&#8203;guglielmo-san](https://github.com/guglielmo-san) in [#&#8203;907](https://github.com/modelcontextprotocol/go-sdk/pull/907) By mirroring key fields from the JSON-RPC payload into HTTP headers, network intermediaries such as load balancers, proxies, and observability tools can route and process MCP traffic without deep packet inspection, reducing latency and computational overhead. This partially implements [SEP-2243](https://modelcontextprotocol.io/seps/2243-http-standardization). #### Behavior Changes ##### `SetError` Behavior Change Previously the `SetError` method on `CallToolResult` always overwrote the `Content` field with the error text. Now `SetError` preserves the existing value if it has already been populated. You can restore the previous behavior by setting the environment variable `seterroroverwrite=1`. - mcp: preserve existing Content in SetError by [@&#8203;ravyg](https://github.com/ravyg) in [#&#8203;864](https://github.com/modelcontextprotocol/go-sdk/pull/864) ##### Cross-Origin Protection Default Change Previously (v1.4.1-v1.5.0) default (zero-value) cross-origin protection was applied when `CrossOriginProtection` in `StreamableHTTPOptions` was `nil`. Now cross-origin protection is not enabled by default when `CrossOriginProtection` is nil. You can restore the previous behavior (enable by default) by setting `enableoriginverification=1`. - mcp: remove default cross origin protection by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;906](https://github.com/modelcontextprotocol/go-sdk/pull/906) `disablecrossoriginprotection` was replaced by `enableoriginverification` after the default was changed to not enable cross-origin protection. `jsonescaping` option was removed, according to plan. #### Other Changes to the SDK - internal: remove unused util functions by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;871](https://github.com/modelcontextprotocol/go-sdk/pull/871) - build(deps): bump github/codeql-action from 4.32.4 to 4.35.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;873](https://github.com/modelcontextprotocol/go-sdk/pull/873) - build(deps): bump actions/setup-go from 6.3.0 to 6.4.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;874](https://github.com/modelcontextprotocol/go-sdk/pull/874) - build(deps): bump actions/setup-node from 6.2.0 to 6.3.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;875](https://github.com/modelcontextprotocol/go-sdk/pull/875) - build(deps): bump dominikh/staticcheck-action from 1.4.0 to 1.4.1 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;872](https://github.com/modelcontextprotocol/go-sdk/pull/872) - oauthex: accept 200 in client registration by [@&#8203;MatyasVondraOutreach](https://github.com/MatyasVondraOutreach) in [#&#8203;877](https://github.com/modelcontextprotocol/go-sdk/pull/877) - mcp: allow Content-Type parameters in streamable transport by [@&#8203;rafaeljusto](https://github.com/rafaeljusto) in [#&#8203;878](https://github.com/modelcontextprotocol/go-sdk/pull/878) - mcp: preserve existing Content in SetError by [@&#8203;ravyg](https://github.com/ravyg) in [#&#8203;864](https://github.com/modelcontextprotocol/go-sdk/pull/864) - mcp: fix race condition in `ServerSession.startKeepalive` by [@&#8203;begelundmuller](https://github.com/begelundmuller) in [#&#8203;856](https://github.com/modelcontextprotocol/go-sdk/pull/856) - chore: preserve CNAME when deploying to GitHub pages by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;884](https://github.com/modelcontextprotocol/go-sdk/pull/884) - extauth: refactor enterprise auth tests by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;879](https://github.com/modelcontextprotocol/go-sdk/pull/879) - feat: Add Support for mkdocs by [@&#8203;Dinesht04](https://github.com/Dinesht04) in [#&#8203;883](https://github.com/modelcontextprotocol/go-sdk/pull/883) - mcp: add DNS rebinding and cross origin protections to SSE transport by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;891](https://github.com/modelcontextprotocol/go-sdk/pull/891) - mcp: log out-of-band errors instead of dropping them by [@&#8203;ravyg](https://github.com/ravyg) in [#&#8203;887](https://github.com/modelcontextprotocol/go-sdk/pull/887) - mcp: don't close session when keepalive ping returns method-not-found by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;900](https://github.com/modelcontextprotocol/go-sdk/pull/900) - mcp: accept parameterized Content-Type types by [@&#8203;kalvinnchau](https://github.com/kalvinnchau) in [#&#8203;890](https://github.com/modelcontextprotocol/go-sdk/pull/890) - mcp: remove default cross origin protection by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;906](https://github.com/modelcontextprotocol/go-sdk/pull/906) - Update README.md by [@&#8203;N-Masi](https://github.com/N-Masi) in [#&#8203;896](https://github.com/modelcontextprotocol/go-sdk/pull/896) - mcp: preserve transport errors in Write error chain by [@&#8203;jpugliesi](https://github.com/jpugliesi) in [#&#8203;888](https://github.com/modelcontextprotocol/go-sdk/pull/888) - mcp: do not re-prompt OAuth after cancelled Authorize by [@&#8203;ravyg](https://github.com/ravyg) in [#&#8203;885](https://github.com/modelcontextprotocol/go-sdk/pull/885) - mcp: Upgrade jsonschema-go by [@&#8203;rafaeljusto](https://github.com/rafaeljusto) in [#&#8203;912](https://github.com/modelcontextprotocol/go-sdk/pull/912) - internal/jsonrpc2: remove unused code by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;910](https://github.com/modelcontextprotocol/go-sdk/pull/910) - MCPGODEBUG update for 1.6.0 by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;893](https://github.com/modelcontextprotocol/go-sdk/pull/893) #### New Contributors - [@&#8203;MatyasVondraOutreach](https://github.com/MatyasVondraOutreach) made their first contribution in [#&#8203;877](https://github.com/modelcontextprotocol/go-sdk/pull/877) - [@&#8203;rafaeljusto](https://github.com/rafaeljusto) made their first contribution in [#&#8203;878](https://github.com/modelcontextprotocol/go-sdk/pull/878) - [@&#8203;begelundmuller](https://github.com/begelundmuller) made their first contribution in [#&#8203;856](https://github.com/modelcontextprotocol/go-sdk/pull/856) - [@&#8203;Dinesht04](https://github.com/Dinesht04) made their first contribution in [#&#8203;883](https://github.com/modelcontextprotocol/go-sdk/pull/883) - [@&#8203;N-Masi](https://github.com/N-Masi) made their first contribution in [#&#8203;896](https://github.com/modelcontextprotocol/go-sdk/pull/896) - [@&#8203;jpugliesi](https://github.com/jpugliesi) made their first contribution in [#&#8203;888](https://github.com/modelcontextprotocol/go-sdk/pull/888) - [@&#8203;guglielmo-san](https://github.com/guglielmo-san) made their first contribution in [#&#8203;904](https://github.com/modelcontextprotocol/go-sdk/pull/904) **Full Changelog**: <https://github.com/modelcontextprotocol/go-sdk/compare/v1.5.0...v1.6.0-pre.1> ### [`v1.5.0`](https://github.com/modelcontextprotocol/go-sdk/releases/tag/v1.5.0) [Compare Source](https://github.com/modelcontextprotocol/go-sdk/compare/v1.4.1...v1.5.0) ***This release is equivalent to v1.5.0-pre.1. Thank you to those who tested the pre-release.*** In this release we introduce important enhancements to the client-side OAuth flows. We also introduce several smaller fixes and improvements. #### Stabilization of client-side OAuth APIs As previously communicated, we're stabilizing the client-side OAuth APIs in `v1.5.0`. This means that the `mcp_go_client_oauth` build tag will no longer be required to compile the functionality and standard backward compatibility guarantees apply from now on. Compared to the experimental support published in `v1.4.0`, we made some backwards incompatible changes: - `auth.AuthorizationCodeHandlerConfig.AuthorizationCodeFetcher`'s type was changed from `func(context.Context, *auth.AuthorizationArgs) (*auth.AuthorizationResult, error)` to `auth.AuthorizationCodeFetcher` which is a reusable definition carrying the same underlying function type. - `auth.AuthorizationCodeHandlerConfig.PreregisteredClientConfig` was removed and replaced with `auth.AuthorizationCodeHandlerConfig.PreregisteredClient` which uses a newly introduced `oauthex.ClientCredentials` type. The type used previously (`auth.PreregisteredClientConfig`) has been removed. - Deprecated functionality has been removed from both `auth` and `oauthex` packages. * all: stabilize client OAuth support by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;861](https://github.com/modelcontextprotocol/go-sdk/pull/861) #### Enterprise Managed Authorization support added Support for [Enterprise Managed Authorization](https://modelcontextprotocol.io/extensions/auth/enterprise-managed-authorization) has been added to `auth/extauth` package. Huge thanks to [@&#8203;radar07](https://github.com/radar07) for the implementation! - Enterprise managed authorization by [@&#8203;radar07](https://github.com/radar07) in [#&#8203;770](https://github.com/modelcontextprotocol/go-sdk/pull/770) **Note:** this support is part of an official MCP extension and is not part of the core protocol. The support of this functionality is not covered by the principles defined in [SDK tiers](https://modelcontextprotocol.io/community/sdk-tiers). #### Other changes to the SDK - examples: fix OAuth client example after latest changes. by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;820](https://github.com/modelcontextprotocol/go-sdk/pull/820) - build(deps): bump actions/upload-artifact from 4.6.1 to 7.0.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;824](https://github.com/modelcontextprotocol/go-sdk/pull/824) - build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.3 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;825](https://github.com/modelcontextprotocol/go-sdk/pull/825) - build(deps): bump actions/setup-go from 6.2.0 to 6.3.0 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;827](https://github.com/modelcontextprotocol/go-sdk/pull/827) - build(deps): bump actions/checkout from 4.2.2 to 6.0.2 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;826](https://github.com/modelcontextprotocol/go-sdk/pull/826) - mcp: simplify and unify unit tests introduced for sampling with tools. by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;799](https://github.com/modelcontextprotocol/go-sdk/pull/799) - auth: fix 2025-03-26 backcompat by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;821](https://github.com/modelcontextprotocol/go-sdk/pull/821) - chore: update deps after v1.4.0 release by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;829](https://github.com/modelcontextprotocol/go-sdk/pull/829) - build(deps): bump github/codeql-action from 3 to 4 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;823](https://github.com/modelcontextprotocol/go-sdk/pull/823) - mcp: update latestProtocolVersion to 2025-11-25 by [@&#8203;findleyr](https://github.com/findleyr) in [#&#8203;724](https://github.com/modelcontextprotocol/go-sdk/pull/724) - mcp: protect ioConn.protocolVersion with a mutex by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;832](https://github.com/modelcontextprotocol/go-sdk/pull/832) - examples: add an example that display header forwarding. by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;836](https://github.com/modelcontextprotocol/go-sdk/pull/836) - internal: fix Unicode zero character handling by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;841](https://github.com/modelcontextprotocol/go-sdk/pull/841) - auth: allow passing custom http.Client to AuthorizationCodeHandler by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;840](https://github.com/modelcontextprotocol/go-sdk/pull/840) - mcp: verify 'Origin' and 'Content-Type' headers by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;842](https://github.com/modelcontextprotocol/go-sdk/pull/842) - auth: return scope in WWW-Authenticate header. by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;834](https://github.com/modelcontextprotocol/go-sdk/pull/834) - mcp: fix setProgressToken when Meta is nil by [@&#8203;StevenRChen](https://github.com/StevenRChen) in [#&#8203;846](https://github.com/modelcontextprotocol/go-sdk/pull/846) - all: clean up Go 1.24 specific code. by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;850](https://github.com/modelcontextprotocol/go-sdk/pull/850) - mcp: re-enable race test after fixing data races by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;851](https://github.com/modelcontextprotocol/go-sdk/pull/851) - mcp: handle empty chunks in MemoryEventStore by [@&#8203;jba](https://github.com/jba) in [#&#8203;862](https://github.com/modelcontextprotocol/go-sdk/pull/862) - oauthex: use internal JSON library for decoding. by [@&#8203;maciej-kisiel](https://github.com/maciej-kisiel) in [#&#8203;866](https://github.com/modelcontextprotocol/go-sdk/pull/866) - all: fix typos by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;869](https://github.com/modelcontextprotocol/go-sdk/pull/869) - mcp: return input validation errors as tool results, not JSON-RPC errors by [@&#8203;ravyg](https://github.com/ravyg) in [#&#8203;863](https://github.com/modelcontextprotocol/go-sdk/pull/863) - all: modernize code by [@&#8203;alexandear](https://github.com/alexandear) in [#&#8203;868](https://github.com/modelcontextprotocol/go-sdk/pull/868) - mcp: accept parameterized Accept media types by [@&#8203;kalvinnchau](https://github.com/kalvinnchau) in [#&#8203;853](https://github.com/modelcontextprotocol/go-sdk/pull/853) - mcp: use http.ResponseController to ensure writes are flushed by [@&#8203;toofishes](https://github.com/toofishes) in [#&#8203;870](https://github.com/modelcontextprotocol/go-sdk/pull/870) #### New Contributors - [@&#8203;StevenRChen](https://github.com/StevenRChen) made their first contribution in [#&#8203;846](https://github.com/modelcontextprotocol/go-sdk/pull/846) - [@&#8203;radar07](https://github.com/radar07) made their first contribution in [#&#8203;770](https://github.com/modelcontextprotocol/go-sdk/pull/770) - [@&#8203;alexandear](https://github.com/alexandear) made their first contribution in [#&#8203;869](https://github.com/modelcontextprotocol/go-sdk/pull/869) - [@&#8203;ravyg](https://github.com/ravyg) made their first contribution in [#&#8203;863](https://github.com/modelcontextprotocol/go-sdk/pull/863) - [@&#8203;kalvinnchau](https://github.com/kalvinnchau) made their first contribution in [#&#8203;853](https://github.com/modelcontextprotocol/go-sdk/pull/853) - [@&#8203;toofishes](https://github.com/toofishes) made their first contribution in [#&#8203;870](https://github.com/modelcontextprotocol/go-sdk/pull/870) **Full Changelog**: <https://github.com/modelcontextprotocol/go-sdk/compare/v1.4.1...v1.5.0> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My43Ni40IiwidXBkYXRlZEluVmVyIjoiNDMuMTkxLjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
chore(deps): update module github.com/modelcontextprotocol/go-sdk to v1.5.0
All checks were successful
ci / trivy (pull_request) Successful in 15s
3097c2088b
Author
Member

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 3 additional dependencies were updated

Details:

Package Change
github.com/google/jsonschema-go v0.4.2 -> v0.4.3
golang.org/x/oauth2 v0.34.0 -> v0.35.0
golang.org/x/sys v0.40.0 -> v0.41.0
### ℹ️ Artifact update notice ##### File name: go.mod In order to perform the update(s) described in the table above, Renovate ran the `go get` command, which resulted in the following additional change(s): - 3 additional dependencies were updated Details: | **Package** | **Change** | | :-------------------------------- | :--------------------- | | `github.com/google/jsonschema-go` | `v0.4.2` -> `v0.4.3` | | `golang.org/x/oauth2` | `v0.34.0` -> `v0.35.0` | | `golang.org/x/sys` | `v0.40.0` -> `v0.41.0` |
sa-renovate changed title from chore(deps): update module github.com/modelcontextprotocol/go-sdk to v1.5.0 to chore(deps): update module github.com/modelcontextprotocol/go-sdk to v1.6.0 2026-05-01 03:04:17 +00:00
sa-renovate force-pushed renovate/github.com-modelcontextprotocol-go-sdk-1.x from 3097c2088b
All checks were successful
ci / trivy (pull_request) Successful in 15s
to 9f8fcc5cd8
All checks were successful
ci / trivy (pull_request) Successful in 14s
2026-05-01 03:04:17 +00:00
Compare
sa-renovate changed title from chore(deps): update module github.com/modelcontextprotocol/go-sdk to v1.6.0 to chore(deps): update module github.com/modelcontextprotocol/go-sdk to v1.6.1 2026-05-23 03:04:19 +00:00
sa-renovate force-pushed renovate/github.com-modelcontextprotocol-go-sdk-1.x from 9f8fcc5cd8
All checks were successful
ci / trivy (pull_request) Successful in 14s
to 927cba130b
All checks were successful
ci / trivy (pull_request) Successful in 14s
2026-05-23 03:04:19 +00:00
Compare
All checks were successful
ci / trivy (pull_request) Successful in 14s
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/github.com-modelcontextprotocol-go-sdk-1.x:renovate/github.com-modelcontextprotocol-go-sdk-1.x
git switch renovate/github.com-modelcontextprotocol-go-sdk-1.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/github.com-modelcontextprotocol-go-sdk-1.x
git switch renovate/github.com-modelcontextprotocol-go-sdk-1.x
git rebase main
git switch main
git merge --ff-only renovate/github.com-modelcontextprotocol-go-sdk-1.x
git switch renovate/github.com-modelcontextprotocol-go-sdk-1.x
git rebase main
git switch main
git merge --no-ff renovate/github.com-modelcontextprotocol-go-sdk-1.x
git switch main
git merge --squash renovate/github.com-modelcontextprotocol-go-sdk-1.x
git switch main
git merge --ff-only renovate/github.com-modelcontextprotocol-go-sdk-1.x
git switch main
git merge renovate/github.com-modelcontextprotocol-go-sdk-1.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
DevFW-CICD/edge-connect-mcp!8
No description provided.