MMCP GO ToolsA Go-focused Model Context Protocol (MCP) server that provides idiomatic Go code generation, style guidelines, and best practices. This tool helps Language Models understand and generate high-quality Go code following established patterns and conventions.

mcp-so:mcp-go-tools_ksysoev

View source
A
100/100

First Seen

Feb 18, 2026

Last Scanned

Feb 20, 2026

Findings

1

Score

100/100

LOW 1

Findings (1)

LOW
go install from remote
L28

Detects go install fetching and compiling arbitrary Go packages

go install github.com/ksysoev/mcp-go-tools/cmd/mcp-go-tools@
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.