version_info
Pack: goproxy · Endpoint: https://gateway.pipeworx.io/goproxy/mcp
Version metadata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
module_path | string | yes | |
version | string | yes |
Example call
Arguments
{
"module_path": "github.com/sirupsen/logrus",
"version": "v1.9.3"
}
curl
curl -X POST https://gateway.pipeworx.io/goproxy/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"version_info","arguments":{"module_path":"github.com/sirupsen/logrus","version":"v1.9.3"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('version_info', {
"module_path": "github.com/sirupsen/logrus",
"version": "v1.9.3"
});
More examples
{
"module_path": "golang.org/x/net",
"version": "v0.17.0"
}
Response shape
| Field | Type | Description |
|---|---|---|
Version | string | The version string |
Time | string | Timestamp of the version |
Full JSON Schema
{
"type": "object",
"description": "Metadata for a specific version of a Go module",
"properties": {
"Version": {
"type": "string",
"description": "The version string"
},
"Time": {
"type": "string",
"description": "Timestamp of the version"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"goproxy": {
"url": "https://gateway.pipeworx.io/goproxy/mcp"
}
}
}
See Getting Started for client-specific install steps.