Ggodoc-mcp-serverA mcp server provide infomation from pkg.go.dev. For all golang programmers

mcp-so:godoc-mcp-server_yikakia

View source
A
100/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

2

Score

100/100

LOW 2

Findings (2)

LOW
go install from remote
L30

Detects go install fetching and compiling arbitrary Go packages

go install github.com/yikakia/godoc-mcp-server/cmd/godoc-mcp-server@
FIX

Pin Go install targets to a specific version (e.g., go install example.com/tool@v1.2.3). Avoid @latest as it fetches whatever is currently published.

FP?

Likely FP if the go install target is a well-known tool (e.g., golang.org/x/ packages) pinned to a specific version in documentation.

LOW
go install from remote
L45

Detects go install fetching and compiling arbitrary Go packages

go install github.com/yikakia/godoc-mcp-server/cmd/godoc-mcp-server@
FIX

Pin Go install targets to a specific version (e.g., go install example.com/tool@v1.2.3). Avoid @latest as it fetches whatever is currently published.

FP?

Likely FP if the go install target is a well-known tool (e.g., golang.org/x/ packages) pinned to a specific version in documentation.