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
-
Secure Authentication — Enterprise-grade token management using your system's native keychain (macOS Keychain, Windows Credential Manager, Linux Secret Service API).
-
Integration Management — Create, edit, sync, pull, and submit integrations directly from the terminal.
-
Serverless Functions — Deploy functions in Node.js, Python, Golang, or Java with three deployment types: Blueprint, Git, and Container. Test locally before publishing.
-
MCP Management — Configure MCP connections for AI tools (Claude, VS Code, Cursor, and more) via STDIO or Streamable HTTP.
-
Smart Project Management — Automated folder structure and configuration files generated on project creation.
-
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