We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c57985 commit dff22ddCopy full SHA for dff22dd
1 file changed
cmd/src/mcp.go
@@ -23,10 +23,19 @@ func mcpMain(args []string) error {
23
24
subcmd := args[0]
25
if subcmd == "list-tools" {
26
- fmt.Println("Available tools")
+ fmt.Println("The following tools are available:")
27
for name := range tools {
28
- fmt.Printf("- %s\n", name)
+ fmt.Printf(" • %s\n", name)
29
}
30
+ fmt.Println("\nUSAGE:")
31
+ fmt.Printf(" • Invoke a tool\n")
32
+ fmt.Printf(" src mcp <tool-name> <flags>\n")
33
+ fmt.Printf("\n • View the Input / Output Schema of a tool\n")
34
+ fmt.Printf(" src mcp <tool-name> schema\n")
35
+ fmt.Printf("\n • List the available flags of a tool\n")
36
+ fmt.Printf(" src mcp <tool-name> -h\n")
37
38
39
return nil
40
41
0 commit comments