Skip to main content
Glama

Trivy

Official
by aquasecurity
severity.go345 B
package findings import "strings" type Severity uint8 const ( Unknown Severity = iota Low Medium High Critical ) func ParseSeverity(s string) Severity { switch strings.ToUpper(s) { case "CRITICAL": return Critical case "HIGH": return High case "MEDIUM": return Medium case "LOW": return Low default: return Unknown } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aquasecurity/trivy-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server