Serverless Agent Runtime
Think of Supabase but for AI agents. Durable sessions, conversation history, recovery, and app-scoped agent directories out of the box.
Use UClaw from
Product
UClaw turns a plain LLM request into a full-fledged agent system with durable state, tools, billing, and developer console.
Think of Supabase but for AI agents. Durable sessions, conversation history, recovery, and app-scoped agent directories out of the box.
Create agents, send prompts, and stream responses from your backend with `@uclaw/sdk`.
$ npm install @uclaw/sdk
streaming response...
Bring live agent state into product UIs with browser-safe client tokens and WebSockets.
Start with a free balance, then pay only for the model tokens your agents consume.
Give agents access to workspace, browser, code execution, MCP, and sub-agent capabilities.
Switch between Anthropic, OpenAI, Gemini, and open models with config changes.
Manage API keys, usage, credits, and quickstart prompts from one dashboard.
Quick Start
Create an API key, install the SDK, and stream your first stateful response from a Node.js script.
import { AppClient } from "@uclaw/sdk";
const app = new AppClient({
apiKey: process.env.UCLAW_API_KEY,
});
const agent = await app.agents.create({
config: {
model: "google/gemini-3.5-flash",
instructions: "You are a helpful assistant.",
},
});
const run = await agent.run("Draft a launch checklist for my AI app.");
for await (const event of run.stream()) {
if (event.type === "text-delta") {
process.stdout.write(event.delta);
}
}Pricing
UClaw managed agent uses prepaid credits with transparent model pricing. No seat licenses, no monthly subscription, and no dedicated compute instance required for launch.
View pricingFree starter credits
$1.00
Billing
Prepaid USD balance
Token cost
Align with upstream
Infrastructure fee
15% of token cost