NAME
info - metadata for a specific version
SYNOPSIS
info
DESCRIPTION
Returns the proxy's metadata for one specific version of a module. Output is a JSON object:
{"Version":"v3.9.0","Time":"2026-05-09T21:35:44Z","Origin":...}
MCP tool name: module_info. Input: args (string array; first
element is module path, second is version).
Examples:
cli-mcp-go-ecosystem module info github.com/urfave/cli/v3 v3.9.0
# {"Version":"v3.9.0","Time":"2026-05-09T..."}
# MCP form
mcporter call go-ecosystem.module_info \
--args '{"args":["github.com/urfave/cli/v3","v3.9.0"]}'
# missing arguments
cli-mcp-go-ecosystem module info github.com/urfave/cli/v3
# module-path and version are required
Use this to check publication time before pinning a version, or to look up the Origin field (which records the git commit hash if the module was published from a git repo).
Usage:
info [GLOBAL OPTIONS] [command [COMMAND OPTIONS]] [ARGUMENTS...]