Introduction
Overview
The mxbai CLI is a comprehensive tool for managing stores, uploading documents, and performing AI-powered search and question-answering operations. Built on top of the Mixedbread SDK, it provides an efficient command-line interface for all core platform features.
New to Mixedbread? Check out our API documentation to understand the underlying services that power the CLI.
Key Features
Store Management
Create, list, update, and manage your stores with comprehensive control.
File Upload & Processing
Upload files with intelligent processing strategies, metadata, and batch operations.
Semantic Search
Search through your stores using natural language queries with advanced filtering.
Question Answering
Ask questions and get AI-powered answers based on your store content.
Intelligent Sync
Sync files with Git-based change detection and intelligent processing strategies.
Shell Completion
Set up tab completion for commands and subcommands to improve your CLI experience.
Quick Start
1. Install the CLI
2. Set your API key
3. Install shell completion (optional but recommended)
4. Create a store
5. Upload files
6. Search your content
Command Structure
The mxbai CLI is organized around store operations using the store
subcommand:
Configuration Management
mxbai config set <key> <value>
- Set configuration valuesmxbai config get [key]
- Get configuration valuesmxbai config keys add <key> [name]
- Add a new API keymxbai config keys list
- List all API keysmxbai config keys remove <name>
- Remove an API keymxbai config keys set-default <name>
- Set the default API key
Shell Completion
mxbai completion install
- Install shell completionmxbai completion uninstall
- Uninstall shell completionmxbai completion refresh
- Refresh completion cache for store names
Store Management
mxbai store list
- List all storesmxbai store create <name>
- Create a new storemxbai store get <name-or-id>
- Get store detailsmxbai store update <name-or-id>
- Update store settingsmxbai store delete <name-or-id>
- Delete a store
File Operations
mxbai store upload <name-or-id> <patterns...>
- Upload filesmxbai store files list <name-or-id>
- List files in storemxbai store files get <name-or-id> <file-id>
- Get file detailsmxbai store files delete <name-or-id> <file-id>
- Delete a file
Search & Query
mxbai store search <name-or-id> <query>
- Search storemxbai store qa <name-or-id> <question>
- Ask questions about content
Intelligent Sync
mxbai store sync <name-or-id> <patterns...>
- Intelligent sync with change detection
Global Options
All commands support these global options:
--api-key <key>
- Actual API key for authentication--saved-key <name>
- Name of saved API key from config--base-url <url>
- Custom API base URL--format <format>
- Output format:table
,json
, orcsv
(default:table
)--debug
- Enable debug output (equivalent toMXBAI_DEBUG=true
)--help
- Show help information for commands
Environment Variables
The CLI supports the following environment variables:
MXBAI_API_KEY
- API key for authentication (must start withmxb_
)MXBAI_BASE_URL
- Custom API base URLMXBAI_DEBUG
- Enable debug output (set totrue
or1
)MXBAI_CONFIG_PATH
- Override default config file location
Authentication
The CLI looks for your API key in this order:
--api-key
or--saved-key
command line flagsMXBAI_API_KEY
environment variable- Default API key from config file (platform-specific location):
- Linux/Unix:
~/.config/mixedbread/config.json
(or$XDG_CONFIG_HOME/mixedbread/config.json
) - macOS:
~/Library/Application Support/mixedbread/config.json
- Windows:
%APPDATA%\mixedbread\config.json
- Custom: Set
MXBAI_CONFIG_PATH
environment variable to override
- Linux/Unix:
Multi-Organization Support
The CLI supports multiple API keys for different organizations or environments:
Getting Help
Use the --help
flag to get detailed information about any command: