What problem does it solve?
Cloudbase Agent (TypeScript) helps teams build and deploy AI agents that communicate with UIs through the AG-UI event protocol, so you can stream messages, tool calls, and state updates instead of building one-off HTTP handlers.
Core Features & Use Cases
- Deploy AG-UI compatible agent servers: Expose HTTP endpoints (including SSE streaming) for agent runs and UI integration.
- Adapter-based framework integration: Use LangGraph or LangChain adapters, or implement custom adapters by extending
AbstractAgent.
- Protocol-level control and interoperability: Emit and handle AG-UI lifecycle events (RUN/TEXT/TOOL/STATE) and support client-defined tools.
Quick Start
Ask the AI assistant to “Create a CloudBase AG-UI agent server using @cloudbase/agent-server with the LangGraph adapter, wire the server to stream events over SSE, and explain how the client should call the /send-message endpoint using threadId and runId.”