- Notifications
You must be signed in to change notification settings - Fork950
Bump mcp-go to 0.30.0#440
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
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.
Pull Request Overview
This PR updates themcp-go
dependency to v0.30.0 and refactors all direct accesses ofr.Params.Arguments
to the newr.GetArguments()
API.
- Swapped
r.Params.Arguments[...]
withr.GetArguments()[...]
across server, repository, and issue handlers. - Updated the test helper
createMCPRequest
signature to accept a genericany
arguments payload. - Bumped
github.com/mark3labs/mcp-go
to v0.30.0 ingo.mod
.
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 3 comments.
Show a summary per file
File | Description |
---|---|
pkg/github/server.go | Replacedr.Params.Arguments withr.GetArguments() in all helpers. |
pkg/github/repositories.go | Updated argument access inPushFiles to useGetArguments() . |
pkg/github/issues.go | Changed pagination params to useGetArguments() . |
pkg/github/helper_test.go | AdjustedcreateMCPRequest to takeany forArguments . |
go.mod | Bumpedgithub.com/mark3labs/mcp-go from v0.28.0 to v0.30.0. |
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
d4a0764
intomainUh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Description
Bump
mcp-go
to 0.30.0.There is a breaking change introduced bymark3labs/mcp-go#287. While there are now better patterns, this PR is the simplest path to bump.
E2E tests