# AssistLoop joins the Vercel Agents Marketplace

**Published:** January 30, 2026 | **Authors:** Marketplace Team

---

[AssistLoop](https://vercel.com/marketplace/assistloop) is now available in the [Vercel Marketplace](https://vercel.com/marketplace) as an AI-powered customer support integration.

The integration connects natively with Vercel, so adding AI-driven customer support takes minutes. With AssistLoop, teams can:

- Install AssistLoop with minimal setup using an Agent ID
- Add AI-powered support directly to Next.js apps
- Train agents on internal docs, FAQs, or knowledge bases
- Customize the assistant to match your brand
- Review conversations and hand off to human support when needed

This integration fits naturally into existing Vercel workflows, with unified billing, automatic environment variables, and no manual configuration. Teams can ship AI-powered support faster without managing separate dashboards or complex setup.

AssistLoop automatically injects `NEXT_PUBLIC_ASSISTLOOP_AGENT_ID` into your project environment. Add the widget script to your site:

**widget.tsx**
```html
import Script from 'next/script'
<Script
  src="https://assistloop.ai/assistloop-widget.js"
  strategy="afterInteractive"
  onLoad={() => {
    window.AssistLoopWidget?.init({
      agentId: process.env.NEXT_PUBLIC_ASSISTLOOP_AGENT_ID,
    });
  }}
/>
```

### Get started

Deploy the [AssistLoop Next.js ](https://vercel.com/templates/ai/next-js-assist-loop-template)template from the Marketplace to see it in action.

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)