Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions cmd/thv/app/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,14 @@ func printTextServerInfo(name string, server types.ServerMetadata) {
fmt.Printf(" %s\n", strings.Join(tags, ", "))
}

// Print custom metadata
if customMetadata := server.GetCustomMetadata(); len(customMetadata) > 0 {
fmt.Println("\nCustom Metadata:")
for key, value := range customMetadata {
fmt.Printf(" %s: %v\n", key, value)
}
}

// Print example command
fmt.Println("\nExample Command:")
fmt.Printf(" thv run %s\n", name)
Expand Down
Loading