Skip to main content
The Meibel AI CLI provides command-line access to all API features, perfect for scripting and automation.
The CLI tool is currently in development. This page will be updated when it becomes available.

Planned Features

Installation

# Via pip
pip install meibel-cli

# Via homebrew (macOS)
brew install meibel-ai/tap/meibel

# Via snap (Linux)
snap install meibel-cli

Authentication

# Configure API key
meibel auth login --api-key YOUR_API_KEY

# Or use environment variable
export MEIBEL_API_KEY=YOUR_API_KEY

Basic Commands

# List datasources
meibel datasources list

# Create a datasource
meibel datasources create --name "My Data" --description "Test data"

# Chat with RAG
meibel chat "What is the weather like?"

# Stream responses
meibel chat "Explain quantum computing" --stream

Advanced Usage

  • Batch operations
  • JSON output for scripting
  • Interactive mode
  • Configuration profiles
  • Plugin system

Use Cases

  1. Automation: Script repetitive tasks
  2. Testing: Integrate with CI/CD pipelines
  3. Development: Quick API testing
  4. Operations: Manage resources

Current Alternatives

While the CLI is in development:
  1. Use the Python SDK in scripts
  2. Use curl with the REST API
  3. Create custom scripts with our SDKs

Next Steps