description: Tutorial 7 - chain two built-in tools (getWeather → sendSlackMessage) in a single chat turn. See the agent loop chain real actions.
Time 4 min · Difficulty ★★★ · Surfaces Agentic Chat
!!! abstract “Goal”
Trigger a chain of two built-in tools (getWeather → sendSlackMessage) in a single chat turn. Watch the agent loop in action: plan → call tool A → read result → call tool B with that result → summarize.
This is the canonical “try an agentic workflow” task on the Home checklist. No Tool Studio authoring required - both tools are pre-loaded and already passed their Local Pass.
!!! warning “Slack webhook required”
sendSlackMessage posts to whatever URL is in SLACK_WEBHOOK_URL. Set it in the desktop launcher’s Environment Variables (or as a shell env var when running from source) before launching the app. Without it, the second tool call will fail and the chain breaks at step 2.
qwen3.5:9b works; gemma4:e4b chains more reliably for longer prompts), tick Manual built-in tool selection, and confirm getWeather and sendSlackMessage are selected in the exposed-tools list.Send this prompt verbatim:
Get today's weather for Seoul and send a short summary to Slack.
① Built-in MCP enabled - getWeather and sendSlackMessage are both in the inventory, ② one prompt that requires two tool calls in the right order.
getWeather with SeoulsendSlackMessage with a short natural-language summarygetWeather before sendSlackMessage.sendSlackMessage failing here means the webhook URL is wrong, not the tool itself.sendSlackMessage with a Tool Studio tool of your own. The moment it passes its Local Pass, it’s live on the built-in MCP server and the chat can use it the same way.