pkg-go-dev
Provides tools to list Go module versions, retrieve the latest version, fetch version metadata, and get raw go.mod files from Google's Go module proxy (proxy.golang.org).
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pkg-go-devlist versions of gorilla/mux"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@pipeworx/pkg-go-dev
Go modules MCP — version list + metadata for any importable Go module. No auth.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
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
Related MCP server: mcp-golang-server
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).
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"pkg-go-dev": {
"url": "https://gateway.pipeworx.io/pkg-go-dev/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/pkg-go-dev/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Pkg Go Dev data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Go module proxy — module info, versions, go.mod
Go vulns: CVEs per module, fixed versions. $0.01/query. Register in-session — free testnet funds.
deps.dev — Google's package metadata + dependency graph API
Generate SBOMs, scan vulnerabilities, and analyze dependencies from local projects or Git repos.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides real-time access to Go package documentation, function signatures, and type definitions directly from pkg.go.dev. It enables LLMs to search for packages, retrieve specific versions, and access code examples from the official Go module ecosystem.6 npm2MIT
- AlicenseNot gradedqualityFmaintenanceProvides Go language tools for LLMs to analyze, test, and format Go code.1MIT
- AlicenseAqualityCmaintenanceAn MCP server that queries 19 package registries (npm, PyPI, crates.io, etc.) to retrieve the latest version of packages and their metadata.211MIT
- AlicenseNot gradedqualityAmaintenanceEnables users to look up package versions, scan for vulnerabilities, and analyze dependencies across multiple registries (npm, Maven, PyPI, etc.) using exact version recommendations for security.4MIT