Agent Workflow Builder
MCP-style Tool Execution Demo
Groq-powered prototype ยท Claude/Anthropic-ready provider layer
Workflow execution timeline
Tool calls, inputs, mocked outputs, and final response
No workflow run yet
Configure the agent, select tools, and run the default payment support task to inspect the execution.
Base44-ready action adapter
Low-code wiring path
This demo uses mocked actions, but the tool/action layer is structured so Base44 records, workflows, and platform APIs can be wired in without changing the agent runtime.
Tool registry
Typed mock actions available to the agent
searchKnowledgeBase
enabledSearch internal support policies and help articles for a customer issue.
{ query: string; customerIssue?: string; intent?: 'billing' | 'technical' | 'general' }
createSupportTicket
enabledCreate a support ticket with category, priority, issue summary, and customer context.
{ customerIssue: string; priority?: 'low' | 'medium' | 'high'; category?: string; queue?: string }
draftCustomerReply
enabledDraft a professional customer-facing reply based on workflow findings.
{ customerName?: string; issue: string; ticketId?: string; tone?: 'concise' | 'professional' }
updateCRMRecord
enabledUpdate a mocked CRM profile with status, notes, and workflow outcome.
{ customerId?: string; status: string; note?: string; tag?: string }
summarizeWorkflow
enabledSummarize completed actions, unresolved risks, and next recommended step.
{ completedActions: string[]; unresolvedItems?: string[]; recommendation?: string }