NAME
by-id - advisory by GO-YYYY-NNNN id
SYNOPSIS
by-id
DESCRIPTION
Returns the full OSV-shaped advisory for a single Go vulnerability
id. Output is the raw JSON object as published by vuln.go.dev,
including affected, references, summary, details, etc.
MCP tool name: vuln_by-id. Input: args (string array, first
element is the id).
Examples:
cli-mcp-go-ecosystem vuln by-id GO-2024-2611
# {"id":"GO-2024-2611","summary":"...","affected":[...],"references":[...]}
# MCP form
mcporter call go-ecosystem.vuln_by-id \
--args '{"args":["GO-2024-2611"]}'
# unknown id - 404 from vuln.go.dev
cli-mcp-go-ecosystem vuln by-id GO-9999-9999
# error: ...
Ids follow the format GO--. Treat the year as informational, not as a filter; an advisory from 2024 can affect modules with versions from any year.
Usage:
by-id [GLOBAL OPTIONS] [command [COMMAND OPTIONS]] [ARGUMENTS...]