latest_version

Pack: pkg-go-dev · Endpoint: https://gateway.pipeworx.io/pkg-go-dev/mcp

Most recent released version of a Go module — with the resolved time.

Parameters

NameTypeRequiredDescription
module_pathstringyesModule import path

Example call

Arguments

{
  "module_path": "github.com/gin-gonic/gin"
}

curl

curl -X POST https://gateway.pipeworx.io/pkg-go-dev/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"latest_version","arguments":{"module_path":"github.com/gin-gonic/gin"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('latest_version', {
  "module_path": "github.com/gin-gonic/gin"
});

Response shape

FieldTypeDescription
VersionstringResolved latest version identifier
TimestringTimestamp of the release
Full JSON Schema
{
  "type": "object",
  "properties": {
    "Version": {
      "type": "string",
      "description": "Resolved latest version identifier"
    },
    "Time": {
      "type": "string",
      "description": "Timestamp of the release"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "pkg-go-dev": {
      "url": "https://gateway.pipeworx.io/pkg-go-dev/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026