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.34.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

❓ Verification inconclusive

go mod tidy required – pipeline is red

CI reports that go.mod/go.sum are out of sync.
After bumping github.com/mark3labs/mcp-go to v0.34.0, new transitive deps (and possibly version constraints) were introduced but not recorded. Run:

go mod tidy

and commit the resulting changes to both go.mod and go.sum.
Until that is done the build will keep failing.


go.mod/go.sum out of sync – run go mod tidy
CI is failing because after bumping github.com/mark3labs/mcp-go to v0.34.0, new transitive dependencies were introduced but not recorded in go.mod/go.sum.
• Run:

go mod tidy

• Commit the updated go.mod and go.sum to restore a passing build.

🤖 Prompt for AI Agents
In go.mod around lines 5 to 8, the module dependencies are out of sync due to
the update of github.com/mark3labs/mcp-go to v0.34.0, which introduced new
transitive dependencies not recorded in go.mod and go.sum. To fix this, run the
command 'go mod tidy' in the project root to update both go.mod and go.sum files
with the correct dependencies, then commit these updated files to ensure the CI
build passes.


Expand Down
Loading