Nexoxa SDK

TypeScript client for NexoxaBridge accounts — sign-in, session verification, and collaboration workspaces. Use when building tools that integrate with NexoxaBridge platform accounts (not for database connections, which stay local).

Installation

bash
npm i nexoxa-sdk
Requires NexoxaBridge desktop for MCP and Bridge SDK packages. Analytics SDKs only need your app server.

Features

  • ·NexoxaClient — login, signup, verifySession, logout
  • ·Workspaces — list, create, invite, accept collaboration
  • ·Typed user features: tier, knowledge graph, connection limits
  • ·Configure baseUrl only if you run a private platform deployment

Quick start

typescript
import { NexoxaClient } from "nexoxa-sdk";

const client = new NexoxaClient();
const { user } = await client.login("[email protected]", "••••••••");
const workspaces = await client.listWorkspaces();

Ask a question… Ctrl+I