@pipeworx/pkg-go-dev
Connect: https://pipeworx.io/mcp — every tool in the catalog, including @pipeworx/pkg-go-dev’s. Install: one-click buttons
Connect to just the @pipeworx/pkg-go-dev pack
https://gateway.pipeworx.io/pkg-go-dev/mcp — only @pipeworx/pkg-go-dev’s own tools, nothing else in the catalog.
No MCP client? Skip the connection: POST https://gateway.pipeworx.io/v1/tools/search_packs {"query":"..."} to find a tool below, GET /v1/tools/<name> for its schema, POST the same URL with arguments for the data — see For AI agents.
Tools: 4
Go modules MCP — version list + metadata for any importable Go module. No auth.
Tools
list_versions(module_path)— all tagged versionslatest_version(module_path)— most recent versionget_module_info(module_path, version)— version metadataget_go_mod(module_path, version)— raw go.mod file
Data source
https://proxy.golang.org/ — the official Google-run Go module proxy. Returns text/json.
Module paths are import paths (e.g. github.com/gin-gonic/gin, golang.org/x/net).
Tools
- list_versions — List all published versions of a Go module by its import path (e.g. “github.com/gin-gonic/gin”) from proxy.golang.org. Returns a sorted array of semver version strings.
- latest_version — Most recent released version of a Go module — with the resolved time.
- get_module_info — Metadata for a specific version (resolved version, commit time, origin).
- get_go_mod — Raw go.mod contents for a specific version. Useful for dependency analysis.
Tools
get_go_mod— Raw go.mod contents for a specific version. Useful for dependency analysis.get_module_info— Metadata for a specific version (resolved version, commit time, origin).latest_version— Most recent released version of a Go module — with the resolved time.list_versions— List all published versions of a Go module by its import path (e.g. github.com/gin-gonic/gin ) from proxy.golang.org. Returns a sorted array of semver version strings.