You can build a Discord support bot that answers questions with AI, sends interactive cards with buttons, and escalates to human agents on demand by combining Chat SDK, AI SDK, and Nuxt. Chat SDK handles the platform integration (Gateway connection, event parsing, and the Discord API), while AI SDK generates responses using Claude. A Redis state adapter tracks subscribed threads across serverless invocations so conversations stay in context.
This guide will walk you through scaffolding a Nuxt app, configuring a Discord application, wiring up Chat SDK with the Discord adapter, adding AI-powered responses and interactive cards, setting up the Gateway forwarder, and deploying to Vercel.
Copy link to headingPrerequisites
Before you begin, make sure you have:
- Node.js 18+
- pnpm (or npm/yarn)
- A Discord server where you have admin access
- A Redis instance (local or hosted, such as Upstash)
- An Anthropic API key
Copy link to headingHow it works
Chat SDK is a unified TypeScript SDK for building chatbots across Discord, Slack, Teams, and other platforms. You register event handlers (like onNewMention and onSubscribedMessage), and the SDK routes incoming events to them. The Discord adapter handles Gateway connection, webhook verification, and the Discord API. The Redis state adapter tracks which threads your bot has subscribed to and manages distributed locking for concurrent message handling.
Discord doesn't push messages to HTTP webhooks like Slack does. Instead, messages arrive through Discord's Gateway WebSocket. The Discord adapter includes a built-in Gateway listener that connects to the WebSocket and forwards events to your webhook endpoint, so the rest of your bot logic looks the same as any other Chat SDK adapter.
When someone @mentions the bot, onNewMention fires and posts a support card. Calling thread.subscribe() tells the SDK to track that thread, so subsequent messages trigger onSubscribedMessage where AI SDK generates a response using Claude.
Copy link to headingSteps
Copy link to heading1. Scaffold the project and install dependencies
Create a new Nuxt app and add the Chat SDK, AI SDK, and adapter packages:
The chat package is the Chat SDK core. The @chat-adapter/discord and @chat-adapter/state-redis packages are the Discord platform adapter and Redis state adapter. The ai and @ai-sdk/anthropic packages are used to generate responses with Claude.
Copy link to heading2. Create a Discord app
- Go to discord.com/developers/applications
- Click New Application, give it a name, and click Create
- Go to Bot in the sidebar and click Reset Token. Copy the token, you'll need this as
DISCORD_BOT_TOKEN - Under Privileged Gateway Intents, enable Message Content Intent
- Go to General Information and copy the Application ID and Public Key. You'll need these as
DISCORD_APPLICATION_IDandDISCORD_PUBLIC_KEY
Then set up the Interactions endpoint:
- In General Information, set the Interactions Endpoint URL to
https://your-domain.com/api/webhooks/discord - Discord will send a PING to verify the endpoint. You'll need to deploy first or use a tunnel
Then invite the bot to your server:
- Go to OAuth2 in the sidebar
- Under OAuth2 URL Generator, select the
botscope - Under Bot Permissions, select:
- Send Messages
- Create Public Threads
- Send Messages in Threads
- Read Message History
- Add Reactions
- Use Slash Commands
- Copy the generated URL and open it in your browser to invite the bot
Copy link to heading3. Configure environment variables
Create a .env file in your project root:
The Discord adapter reads DISCORD_BOT_TOKEN, DISCORD_PUBLIC_KEY, and DISCORD_APPLICATION_ID automatically. The Redis state adapter reads REDIS_URL, and AI SDK's Anthropic provider reads ANTHROPIC_API_KEY.
Copy link to heading4. Create the bot
Create server/lib/bot.tsx with a Chat instance configured with the Discord adapter. This bot uses AI SDK to answer support questions:
The file extension must be .tsx (not .ts) when using JSX components like Card and Button. Make sure your tsconfig.json has "jsx": "react-jsx" and "jsxImportSource": "chat".
onNewMention fires when a user @mentions the bot. Calling thread.subscribe() tells the SDK to track that thread, so subsequent messages trigger onSubscribedMessage where AI SDK generates a response.
Copy link to heading5. Create the webhook route
Create a server route that handles incoming Discord webhooks:
This creates a POST /api/webhooks/discord endpoint. The waitUntil option ensures message processing completes after the HTTP response is sent.
Copy link to heading6. Set up the Gateway forwarder
Discord doesn't push messages to webhooks like Slack does. Instead, messages arrive through the Gateway WebSocket. The Discord adapter includes a built-in Gateway listener that connects to the WebSocket and forwards events to your webhook endpoint.
Create a route that starts the Gateway listener:
The Gateway listener connects to Discord's WebSocket, receives messages, and forwards them to your webhook endpoint for processing. In production, you'll want a cron job to restart it periodically.
Copy link to heading7. Test locally
- Start your development server (
pnpm dev) - Trigger the Gateway listener by visiting
http://localhost:3000/api/discord/gatewayin your browser - Expose your server with a tunnel (e.g.
ngrok http 3000) - Update the Interactions Endpoint URL in your Discord app settings to your tunnel URL (e.g.
https://abc123.ngrok.io/api/webhooks/discord) - @mention the bot in your Discord server. It should respond with a support card
- Reply in the thread. AI SDK should generate a response
- Click Escalate to Human. The bot should post an escalation message
Copy link to heading8. Add a cron job for production
The Gateway listener runs for a fixed duration. In production, set up a cron job to restart it automatically. If you're deploying to Vercel, add a vercel.json:
This restarts the Gateway listener every 9 minutes, ensuring continuous connectivity. Protect the endpoint with a CRON_SECRET environment variable in production.
Copy link to heading9. Deploy to Vercel
Deploy your bot to Vercel:
After deployment, set your environment variables in the Vercel dashboard (DISCORD_BOT_TOKEN, DISCORD_PUBLIC_KEY, DISCORD_APPLICATION_ID, REDIS_URL, ANTHROPIC_API_KEY). Update the Interactions Endpoint URL in your Discord app settings to your production URL.
Copy link to headingTroubleshooting
Copy link to headingBot doesn't respond to mentions
Check that Message Content Intent is enabled under Privileged Gateway Intents in your Discord app settings. Without it, the bot can't read message content and won't see @mentions. Also confirm the Gateway listener is running by visiting /api/discord/gateway or checking that the cron job is configured in production.
Copy link to headingInteractions endpoint verification fails
Discord sends a signed PING request to verify your endpoint. Confirm that DISCORD_PUBLIC_KEY matches the value in your Discord app's General Information page. A mismatched or missing public key will cause the adapter to reject the verification request.
Copy link to headingGateway listener disconnects frequently
The listener runs for a fixed duration (10 minutes in this guide) and must be restarted. In production, use the cron job shown in step 8 to restart it every 9 minutes. If disconnections happen sooner, check your server logs for WebSocket errors and verify that DISCORD_BOT_TOKEN is valid.
Copy link to headingAI responses are slow or time out
generateText blocks until the full response is returned. For long answers, consider switching to streaming with streamText and passing the stream directly to thread.post(). See the Streaming docs for details.
Copy link to headingRedis connection errors
Verify that REDIS_URL is reachable from your deployment environment. The state adapter uses Redis for distributed locking, so the bot won't process messages without a working connection.
Copy link to headingBuild with a template or read more.
Chat SDK Form BotBuild a bot that helps you address form submissions right from Slack, Teams, and more.
Chat SDK Deploy BotBuild a bot that lets you deploy projects from Slack, with a built-in approval flow.
The Complete Guide to Chat SDK
Learn how Chat SDK works end-to-end: from core concepts to building your first bot to deploying it across Slack, Teams, and more.
Copy link to headingFAQ
Is Chat SDK free?
Yes, Chat SDK is free and open source. You can install it from npm, use it in commercial projects, and contribute to its development without any licensing cost. The official platform adapters published under @chat-adapter/* are also free to use. You will still need to pay for any third-party services your bot relies on, such as your chat platform's API tier, your AI model provider, and your Redis or Postgres host.
Can I use any number of adapters?
Yes, you can register as many adapters as you need on a single Chat instance. Add each adapter to the adapters object when you create your bot, and the same handlers will run for events from every connected platform. This is the main reason to use Chat SDK: you write your bot logic once and it works across Slack, Teams, Discord, Linear, and any other platform you add later, without changing the rest of your code.
What frameworks does Chat SDK support?
Chat SDK supports nearly any JavaScript or TypeScript framework, so you can add it to your existing codebase without changing your stack. It works with Next.js, Nuxt, Hono, SvelteKit, Express, and other server frameworks that can handle HTTP requests. Each platform adapter exposes a webhook handler (such as bot.webhooks.slack) that you wire into your framework's routing, whether that is a Next.js route handler, a Hono route, a Nuxt server route, or something else.
Does Chat SDK only work on Vercel?
No, Chat SDK works anywhere you can run a Node.js or TypeScript server. It is framework-agnostic and runs on Next.js, Nuxt, Hono, and other frameworks, so you can deploy it to Vercel, AWS, Netlify, Cloudflare Workers, your own infrastructure, or any other host. Vercel maintains the SDK and the official adapters, but there is no requirement to deploy on Vercel to use it.