Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/cli/mcp_add.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func AddMCPTool(workflowFile string, mcpServerID string, registryURL string, tra
compiler := workflow.NewCompiler(verbose, "", "")
if err := compiler.CompileWorkflow(workflowPath); err != nil {
mcpAddLog.Printf("Workflow compilation failed: %v", err)
fmt.Println(console.FormatWarningMessage(fmt.Sprintf("Workflow compilation failed: %v", err)))
fmt.Fprintln(os.Stderr, err)
fmt.Println(console.FormatInfoMessage("You can fix the issues and run 'gh aw compile' manually"))
} else {
mcpAddLog.Print("Workflow compiled successfully")
Expand Down
Loading