chore(deps): bump mark3labs/mcp-go v0.48.0 -> v0.55.0#103
Merged
Conversation
mcp-go is the library behind both PromptZero's MCP server (internal/mcp) and its MCP federation client (internal/mcpfed) — a core integration that had drifted seven minor versions behind. Bumping it keeps current with upstream MCP protocol updates and fixes. API-compatible with our usage: all eight files importing mcp-go compile unchanged — no call-site edits. go mod tidy pulled the new transitive dep the library now uses (santhosh-tekuri/jsonschema/v6) and raised the go directive to 1.25.5 (the library's new floor); the project's toolchain is already go1.25.11 and CI builds on 1.25.11, so the floor is satisfied everywhere. go.mod / go.sum only. Verification: go build ./... clean; the MCP-exercising packages pass (internal/mcp, internal/mcpfed); task test (full short suite) 398 ok / 0 fail; task eval 12/12; golangci-lint 0 issues; go vet clean; govulncheck clean. Not exercised against a live MCP client/server this loop — the unit tests + mock-transport eval are the coverage.
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
Bumps
github.com/mark3labs/mcp-gov0.48.0 → v0.55.0 — the library behind both PromptZero's MCP server (internal/mcp) and its MCP federation client (internal/mcpfed), a core integration that had drifted seven minor versions behind. Keeps current with upstream MCP protocol updates and fixes.Compatibility
API-compatible with our usage: all 8 importing files compile unchanged — no call-site edits.
go mod tidypulled the new transitive dep (santhosh-tekuri/jsonschema/v6) and raised thegodirective to 1.25.5 (the library's new floor) — the project toolchain is alreadygo1.25.11and CI builds on 1.25.11, so the floor is satisfied. Onlygo.mod/go.sumtouched.Verification
go build ./...— cleaninternal/mcp,internal/mcpfedtask test— full short suite, 398 ok / 0 failtask eval— 12/12;golangci-lint0 issues;go vetclean;govulncheckcleanNot exercised against a live MCP client/server this loop — unit tests + mock-transport eval are the coverage.