Nexoxa Bridge SDK

TypeScript client for the local Bridge API on your machine. Automate connect-by-name, queries, server audits, storage, and analytics overview from scripts or CI — same surface as MCP, programmatic.

Installation

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

Features

  • ·BridgeClient — listConnections(), connectByName(), query()
  • ·SSH: serverDashboard(), serverExec(), analyticsOverview()
  • ·Storage: S3/SFTP list, move, mkdir; SMTP verify and send
  • ·Knowledge graph: kgReport(), kgSummary(), kgRefresh()

Quick start

typescript
import { BridgeClient } from "nexoxa-bridge-sdk";

const bridge = new BridgeClient();
await bridge.connectByName("Production Postgres");
await bridge.query("SELECT 1");

Ask a question… Ctrl+I