Skip to main content
Glama
version.go513 B
package cli import ( "fmt" "github.com/spf13/cobra" ) // This will be overridden at build time var ( version = "unknown" commit = "unknown" ) var versionCmd = &cobra.Command{ Use: "version", Short: "Print the version of kube-audit-mcp.", Run: func(cmd *cobra.Command, args []string) { printVersion() }, } func printVersion() { fmt.Printf("Version: %s\n", version) fmt.Printf("GitCommit: %s\n", commit) fmt.Println("For more information, visit https://github.com/mozillazg/kube-audit-mcp") }

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/mozillazg/kube-audit-mcp'

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