Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/tuannvm/haproxy-mcp-server
go 1.24.2

require (
github.com/mark3labs/mcp-go v0.25.0
github.com/mark3labs/mcp-go v0.35.0
github.com/spf13/viper v1.20.1
)
Comment on lines 5 to 8
Copy link

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Pipeline failing – run go mod tidy after bumping mcp-go

The CI failure indicates that go.mod/go.sum are out of sync.
After changing the version on line 6 you must run go mod tidy (or go get github.com/mark3labs/[email protected]) and commit the updated files; otherwise downstream builds will keep failing.


🏁 Script executed:

#!/bin/bash
# Tidy and verify no pending changes
go mod tidy
git diff --exit-code go.mod go.sum || {
  echo "Please commit the updated go.mod / go.sum";
  exit 1
}

Length of output: 2635


Commit updated go.sum after go mod tidy

The CI is failing because go.mod and go.sum are out of sync after bumping github.com/mark3labs/mcp-go to v0.35.0. Running:

go mod tidy
git diff --exit-code go.mod go.sum

shows changes in go.sum that need to be committed.

Files needing updates:

  • go.sum

Example diff:

--- a/go.sum
+++ b/go.sum
- github.com/mark3labs/mcp-go v0.25.0 h1:UUpcMT3L5hIhuDy7aifj4Bphw4Pfx1Rf8mzMXDe8RQw=
- github.com/mark3labs/mcp-go v0.25.0/go.mod h1:rXqOudj/djTORU/ThxYx8fqEVj/5pvTuuebQ2RC7uk4=
+ github.com/mark3labs/mcp-go v0.35.0 h1:eh5bJGGVkNEaehCbPmAFqFgk/SB18YvxmsR2rnPm8BQ=
+ github.com/mark3labs/mcp-go v0.35.0/go.mod h1:rXqOudj/djTORU/ThxYx8fqEVj/5pvTuuebQ2RC7uk4=

Please run go mod tidy and commit the updated go.sum (and go.mod if it changes) to restore a green pipeline.

🤖 Prompt for AI Agents
In go.mod around lines 5 to 8, after updating the version of
github.com/mark3labs/mcp-go to v0.35.0, the go.sum file is out of sync causing
CI failures. Run `go mod tidy` locally to update go.sum accordingly, then commit
the updated go.sum file (and go.mod if it changes) to ensure the module files
are consistent and the pipeline passes.


Expand Down
Loading