versions
Pack: goproxy · Endpoint: https://gateway.pipeworx.io/goproxy/mcp
List available versions.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
module_path | string | yes |
Example call
Arguments
{
"module_path": "github.com/sirupsen/logrus"
}
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":"versions","arguments":{"module_path":"github.com/sirupsen/logrus"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('versions', {
"module_path": "github.com/sirupsen/logrus"
});
More examples
{
"module_path": "github.com/google/uuid"
}
Response shape
Always returns: module_path, versions
| Field | Type | Description |
|---|---|---|
module_path | string | The module path |
versions | array | List of available version strings |
Full JSON Schema
{
"type": "object",
"description": "List of available versions for a Go module",
"properties": {
"module_path": {
"type": "string",
"description": "The module path"
},
"versions": {
"type": "array",
"description": "List of available version strings",
"items": {
"type": "string"
}
}
},
"required": [
"module_path",
"versions"
]
}
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.