From eef00fb7e344fb6ab359af1eec7b1171d40cbdc8 Mon Sep 17 00:00:00 2001 From: Rinor Maloku Date: Mon, 8 Sep 2025 21:45:37 +0200 Subject: [PATCH] fix: sample tool name is invalid --- pkg/cli/internal/commands/init_typescript.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/internal/commands/init_typescript.go b/pkg/cli/internal/commands/init_typescript.go index f74aea6..0998ea0 100644 --- a/pkg/cli/internal/commands/init_typescript.go +++ b/pkg/cli/internal/commands/init_typescript.go @@ -34,6 +34,6 @@ func runInitTypeScript(_ *cobra.Command, args []string) error { fmt.Printf("1. cd %s\n", projectName) fmt.Printf("2. npm install\n") fmt.Printf("3. npm run dev\n") - fmt.Printf("4. Add tools with: kmcp add-tool my-tool\n") + fmt.Printf("4. Add tools with: kmcp add-tool myTool\n") return nil }