Skip to content

Bump github.com/mark3labs/mcp-go from 0.18.0 to 0.22.0#4

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/github.com/mark3labs/mcp-go-0.22.0
Closed

Bump github.com/mark3labs/mcp-go from 0.18.0 to 0.22.0#4
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/github.com/mark3labs/mcp-go-0.22.0

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 21, 2025

Bumps github.com/mark3labs/mcp-go from 0.18.0 to 0.22.0.

Release notes

Sourced from github.com/mark3labs/mcp-go's releases.

Release v0.22.0

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.21.1...v0.22.0

Release v0.21.1

What's Changed

Full Changelog: mark3labs/mcp-go@v0.21.0...v0.21.1

Release v0.21.0

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.20.1...v0.21.0

Release v0.20.1

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.20.0...v0.20.1

... (truncated)

Commits
  • 013c047 Use correct mutex
  • 5378d0f feat: add message to ProgressNotification (#119)
  • 79a0ac0 Add RemoveResource method to MCPServer (#141)
  • 0448984 feat:Added the parameter parsing mode to parse any to the specified type (#148)
  • dd3210c feat: Implement Streamable-HTTP Client Basic (#168)
  • 8c0f2be feat(server): convert ping messages to be spec compliant (#169)
  • d3c77df fix: add mutex to SSEServer to avoid data race between Start and Shutdown; fi...
  • 71b910b fix: tool annotation (#165)
  • 37ac814 introduce NewToolResultErrorWithErr and update docs (#140)
  • 3fa49a8 new feature: add tool annnotation (#158)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Summary by Sourcery

Upgrade the mcp-go library dependency from version 0.18.0 to 0.22.0

New Features:

  • Added parameter parsing mode to parse any to a specified type
  • Implemented Streamable-HTTP Client Basic
  • Added message to ProgressNotification
  • Added RemoveResource method to MCPServer

Bug Fixes:

  • Fixed data race in SSEServer between Start and Shutdown
  • Fixed tool annotation

Enhancements:

  • Converted ping messages to be spec compliant

Bumps [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) from 0.18.0 to 0.22.0.
- [Release notes](https://github.com/mark3labs/mcp-go/releases)
- [Commits](mark3labs/mcp-go@v0.18.0...v0.22.0)

---
updated-dependencies:
- dependency-name: github.com/mark3labs/mcp-go
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Apr 21, 2025
@sourcery-ai
Copy link
Copy Markdown

sourcery-ai Bot commented Apr 21, 2025

Reviewer's Guide by Sourcery

This pull request bumps the github.com/mark3labs/mcp-go dependency from version 0.18.0 to 0.22.0. This involves updating the go.mod and go.sum files to reflect the new version.

Sequence diagram for RemoveResource method in MCPServer

sequenceDiagram
  participant Client
  participant MCPServer

  Client->>MCPServer: Call RemoveResource(resourceID)
  MCPServer->>MCPServer: Remove resource from internal storage
  MCPServer-->>Client: Acknowledge removal
Loading

Sequence diagram for Streamable-HTTP Client interaction

sequenceDiagram
  participant Client
  participant Server

  Client->>Server: Initiate Streamable-HTTP Request
  Server->>Server: Process Request
  Server-->>Client: Stream Data Chunks
  Client->>Client: Process Data Chunks
Loading

Updated class diagram for ProgressNotification

classDiagram
  class ProgressNotification {
    +string Message
  }
  note for ProgressNotification "Added Message field"
Loading

File-Level Changes

Change Details Files
The pull request updates the github.com/mark3labs/mcp-go dependency from version 0.18.0 to 0.22.0.
  • Updated the github.com/mark3labs/mcp-go dependency to v0.22.0 in go.mod.
  • Updated the github.com/mark3labs/mcp-go dependency in go.sum.
go.mod
go.sum

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Copy Markdown

@sourcery-ai sourcery-ai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!

@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Apr 28, 2025

Superseded by #6.

@dependabot dependabot Bot closed this Apr 28, 2025
@dependabot dependabot Bot deleted the dependabot/go_modules/github.com/mark3labs/mcp-go-0.22.0 branch April 28, 2025 14:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants