Skip to main content

Introduction

The Boltic CLI is a professional command-line interface for interacting with the Boltic platform — create, manage, and publish integrations, serverless functions, workflows, MCPs, and more with enterprise-grade features and a seamless developer experience.

Source Code: github.com/bolticio/cli

Key Features

  1. Secure Authentication — Enterprise-grade token management using your system's native keychain (macOS Keychain, Windows Credential Manager, Linux Secret Service API).

  2. Integration Management — Create, edit, sync, pull, and submit integrations directly from the terminal.

  3. Serverless Functions — Deploy functions in Node.js, Python, Golang, or Java with three deployment types: Blueprint, Git, and Container. Test locally before publishing.

  4. MCP Management — Configure MCP connections for AI tools (Claude, VS Code, Cursor, and more) via STDIO or Streamable HTTP.

  5. Smart Project Management — Automated folder structure and configuration files generated on project creation.

  6. Multi-platform Support — Works on Windows, macOS, and Linux.


Installation

Prerequisites

  • Node.js 18.0.0 or higher
  • npm 8.0.0 or higher
  • Git

Global Installation

npm install -g @boltic/cli

Verify Installation

boltic version

Quick Start

# Install Boltic CLI globally
npm install -g @boltic/cli

# Authenticate with your Boltic account
boltic login

# Create your first integration
boltic integration create

# Or create a serverless function
boltic serverless create --type blueprint --name my-api --language nodejs

# Test serverless locally
boltic serverless test

# Deploy to Boltic Cloud
boltic serverless publish