Skip to content

Update module github.com/mark3labs/mcp-go to v0.41.1 - #11

Merged
inercia merged 2 commits into
mainfrom
renovate-github.com-mark3labs-mcp-go-0.x
Oct 16, 2025
Merged

Update module github.com/mark3labs/mcp-go to v0.41.1#11
inercia merged 2 commits into
mainfrom
renovate-github.com-mark3labs-mcp-go-0.x

Conversation

@renovate

@renovate renovate Bot commented Oct 16, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/mark3labs/mcp-go v0.26.0 -> v0.41.1 age adoption passing confidence

Release Notes

mark3labs/mcp-go (github.com/mark3labs/mcp-go)

v0.41.1

Compare Source

What's Changed

  • fix: replace bufio.Scanner with bufio.Reader to support large message… by @​ezynda3 in #​603

Full Changelog: mark3labs/mcp-go@v0.41.0...v0.41.1

v0.41.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.40.0...v0.41.0

v0.40.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.39.1...v0.40.0

v0.39.1

Compare Source

What's Changed

Full Changelog: mark3labs/mcp-go@v0.39.0...v0.39.1

v0.39.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.38.0...v0.39.0

v0.38.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.37.0...v0.38.0

v0.37.0

Compare Source

⚠️ Breaking Changes

The Result.Meta field type has changed from map[string]any to *Meta. Code that directly accesses or sets this field will need to be updated:

// Before (v0.36.0 and earlier):
result.Meta = map[string]any{"key": "value"}

// After (v0.37.0):
result.Meta = &mcp.Meta{AdditionalFields: map[string]any{"key": "value"}}

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.36.0...v0.37.0

v0.36.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.35.0...v0.36.0

v0.35.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.34.0...v0.35.0

v0.34.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.33.0...v0.34.0

v0.33.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.32.0...v0.33.0

v0.32.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.31.0...v0.32.0

v0.31.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.30.1...v0.31.0

v0.30.1

Compare Source

What's Changed

Full Changelog: mark3labs/mcp-go@v0.30.0...v0.30.1

v0.30.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.29.0...v0.30.0

v0.29.0

Compare Source

What's Changed

Breaking Changes

In v0.29.0, MCP-Go introduces breaking changes to tool request handling. The main change is that request.Params.Arguments is no longer directly accessible as a map. Instead, you must use the new GetArguments() method to retrieve arguments as a map. For type-safe argument access, new helper methods like RequireString(), RequireFloat(), and RequireBool() have been added. To migrate:

  1. Replace direct access to request.Params.Arguments["key"] with request.GetArguments()["key"]
  2. For better type safety, use the new helper methods: request.RequireString("key"), request.RequireFloat("key"), etc.
  3. For complex argument structures, use the new BindArguments() method with a struct, or try the new typed tool handlers with mcp.NewTypedToolHandler() as shown in the new examples/typed_tools example.

New Contributors

Full Changelog: mark3labs/mcp-go@v0.28.0...v0.29.0

v0.28.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.27.1...v0.28.0

v0.27.1

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.27.0...v0.27.1

v0.27.0

Compare Source

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.26.0...v0.27.0


Configuration

📅 Schedule: Branch creation - "after 02:00 am and before 6:00 am every weekday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate-github.com-mark3labs-mcp-go-0.x branch 7 times, most recently from b988845 to 15e6d2e Compare October 16, 2025 15:39
@renovate
renovate Bot force-pushed the renovate-github.com-mark3labs-mcp-go-0.x branch from 15e6d2e to 150971d Compare October 16, 2025 15:40
The build was failing because `request.Params.Arguments` was being indexed without a type assertion, and it was not handling cases where it could be `nil`.

This change adds a type assertion to `map[string]interface{}` and a `nil` check to prevent panics, ensuring the MCP handler can gracefully handle requests with missing or invalid arguments.
@renovate

renovate Bot commented Oct 16, 2025

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@inercia
inercia merged commit 0196846 into main Oct 16, 2025
2 checks passed
@inercia
inercia deleted the renovate-github.com-mark3labs-mcp-go-0.x branch October 16, 2025 15:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant