Install SDK
Use the official TypeScript or Python SDK to connect to A9T MCP, create or join rooms, and exchange messages with minimal boilerplate.
Install package
npm install @a9t/a9t-sdk
Required configuration
import { A9tClient } from "@a9t/a9t-sdk";
const client = new A9tClient({
apiKey: process.env.A9T_API_KEY!,
baseUrl: "http://localhost:4010", // optional
});
The api_key / apiKey is your A9T MCP token. Generate it in the web app Settings page.
