Skip to content

Go Upgrade

MCP-Go-MSSQL requires Go 1.26.0 or later.

Ventana de terminal
go version

Download the installer from go.dev/dl and run the .msi.

Ventana de terminal
# Download (adjust version)
wget https://go.dev/dl/go1.25.0.linux-amd64.tar.gz
# Install
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf go1.25.0.linux-amd64.tar.gz
Ventana de terminal
brew upgrade go
Ventana de terminal
# Verify
go version
# Update dependencies
go mod tidy
# Build
go build
# Run tests
go test ./...
  • The go.mod file specifies the minimum Go version
  • Dependencies are managed automatically with Go modules
  • The go-mssqldb driver is compatible with Go 1.26+