awaBerry Agentic API Node.js client — library documentation, npm install instructions, and examples for integrating device automation into Node.js applications.
This client allows you to interact with the awaBerry Agentic API from Node.js. See below for prerequisites, setup instructions, and usage examples.
npm install axios)async function startDeviceConnectionWebsocket(sessionToken, deviceuuid) { ... }const result = await startDeviceConnectionWebsocket(sessionToken, deviceuuid);
console.log(result);
async function getWebSocket(sessionToken, deviceuuid) { ... }const ws = await getWebSocket(sessionToken, deviceuuid);
ws.send("your message");
ws.close();
To get the latest awaBerry API client implementations, follow these steps:
git clone https://github.com/awaberry/mcp_server_awaberry.git
apiclients folder:cd mcp_server_awaberry/apiclients
This will give you access to all client implementations and tests for Java, Python, TypeScript, and Node.js.
Back to API Clients Overview