Skip to content

SDK Downloads

Download the Contio Partner SDK to integrate your application with MeetingOS.

The easiest way to install the SDK is via npm:

npm install @contio/partner-sdk

Source Code

The SDK is open source and available on GitHub:

View on GitHub

Direct Download

NPM is Recommended

We recommend installing via npm for automatic updates and dependency management. Direct downloads are provided for offline or air-gapped environments.

If you prefer to download the SDK directly, you can download the latest release from the GitHub Releases page.

Package Contents

The SDK package includes:

@contio/partner-sdk/
├── dist/               # Compiled JavaScript (ES2022)
│   ├── index.js        # Main entry point
│   ├── index.d.ts      # TypeScript definitions
│   └── ...
├── README.md           # Quick start guide
└── package.json        # Package manifest

Latest Release

Version 1.7.1

Released: May 22, 2026

Housekeeping: Update SDK to incorporate latest webhook specs; tidy sample toolkits to remove extraneous/unsupported attributes.

Version 1.7.0

Released: May 16, 2026

This release adds Toolkit Distribution for automated version propagation across workspaces, Workflow Dry-Run Mode for pre-execution simulation, and several enhancements to the Workflow and Agenda Item APIs.

View full release history

Installation from Tarball

If you have a .tgz file (from GitHub releases or local build):

# Install from local file
npm install ./contio-partner-sdk-1.6.0.tgz

# Or add to package.json
{
  "dependencies": {
    "@contio/partner-sdk": "file:./contio-partner-sdk-1.6.0.tgz"
  }
}

Verify Installation

After installation, verify the SDK is working:

import { ContioPartnerSDK } from '@contio/partner-sdk';

// Should log available methods
console.log(ContioPartnerSDK.forUser);
console.log(ContioPartnerSDK.forAdmin);

OpenAPI Specification

For API-first development or code generation:

Support

Having issues with installation?