> ## Documentation Index
> Fetch the complete documentation index at: https://developers.autoplay.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Landbot skill

> Connects an existing Landbot AI support agent to Autoplay live activity. Covers passing a stable user ID through Landbot variables and calling Autoplay live activity at answer time so the bot can use recent in-app behavior. Use when the customer already uses Landbot or asks how to give Landbot real-time Autoplay context.

# AI Support Agent — Landbot

> Read `autoplay-core` first for install and credentials (`product_id`, `mcp_url`, `mcp_key`).

## Scoping pattern for Landbot

Landbot has no native MCP support, so a small backend route pulls a user's live activity on demand and returns it to a Landbot Webhook block — no session-linking, no `conv_map`, no listener process. The read is keyed by `product_id` + `user_id` only; thread the user's stable id into the Webhook URL as a query param (e.g. `?user_id=[@user_id]`) so your route can pass it straight through.

`user_id` must exactly equal the id your activity source identifies the user with. See the full tutorial for the Landbot workflow, the backend route, and identity wiring.

## Reference

* Tutorial: [https://developers.autoplay.ai/recipes/landbot](https://developers.autoplay.ai/recipes/landbot)
