August 28, 2026 · Anthropic 快速入门
Claude Managed Agents meets Vercel's Chat SDK
Anthropic published a guide for wiring Claude Managed Agents into Vercel's Chat SDK. Each side owns half: Managed Agents runs the model, the tool loop, session state and sandboxed web research on Anthropic's servers; Chat SDK is the chat layer — one type-safe handler behind 15+ platform adapters (Slack, Teams, Discord, WhatsApp, web).
Together you get a research bot that streams its answer token by token, with a live feed of the tool calls it is making — and no database of your own, because the conversation lives in the Managed Agents session.
It needs Node 22.9+ and an Anthropic API key; `npm run setup` mints the agent and environment ids. One catch the docs are explicit about: it holds a long-lived connection for a whole turn, so it does not fit serverless platforms with second-level timeouts.
Billing is per API usage, separate from any subscription. It earns its keep when real people keep asking the same class of question in a chat tool — before that, it is a toy.