Documentation

Build, integrate, and ship with confidence.

Everything you need to deploy RMC AI agents and platforms — quickstarts, API references, playbooks, and security docs.

— Quickstart

Deploy your first agent in 5 lines.

The RMC SDK handles transport, telephony, memory, and observability. You write business logic.

Get API Access
quickstart.ts
import { RMC } from "@rmc/sdk";

const agent = new RMC.AIAgent({
  name: "support-bot",
  voice: "natural-en",
  channels: ["voice", "whatsapp"],
  tools: [crm.lookup, crm.update],
});

await agent.deploy();