module
Pack: goproxy · Endpoint: https://gateway.pipeworx.io/goproxy/mcp
Most recent version + metadata.
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":"module","arguments":{"module_path":"github.com/sirupsen/logrus"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('module', {
"module_path": "github.com/sirupsen/logrus"
});
More examples
{
"module_path": "golang.org/x/net"
}
Response shape
| Field | Type | Description |
|---|---|---|
Version | string | The latest version string |
Time | string | Timestamp of the version |
Full JSON Schema
{
"type": "object",
"description": "Most recent version and metadata for a Go module",
"properties": {
"Version": {
"type": "string",
"description": "The latest 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.