Download IMB

Get the IMB compiler and runtime to create your own chatbots

Latest Version

v0.2.1

Released: January 2025 • Single binary with Telegram adapter included

🐧

Linux (x86_64)

Tested on Ubuntu 20.04+, Debian, and other distributions

Installation

1. Download and make executable

# Download
wget https://imb.mcpeblocker.uz/imb

# Make executable
chmod +x imb

# Move to PATH (optional)
sudo mv imb /usr/local/bin/

2. Verify installation

imb --version
# Should output: imb 0.2.1

3. Create your first bot

# Create bot file
cat > bot.imb << 'EOF'
on /start {
    reply "Hello! I'm your bot 👋"
}
EOF

# Create config file
cat > imb-conf.ini << 'EOF'
[telegram]
bot_token=YOUR_BOT_TOKEN
EOF

# Run your bot
imb run bot.imb --adapter telegram

Other Platforms

🍎

macOS

Coming soon! For now, build from source with Rust.

🪟

Windows

Coming soon! For now, use WSL or build from source.

Build from Source

If you have Rust installed, you can build IMB from source:

# Requires Rust 1.70 or later
cargo install --git https://mcpeblocker.uz --tag v0.2.1

# Or contact the author for repository access

System Requirements

  • Linux: glibc 2.31+ (Ubuntu 20.04+, Debian 11+)
  • Architecture: x86_64 (64-bit)
  • RAM: 10 MB minimum
  • Disk: 15 MB for binary
  • Network: Required for bot adapters

Get Help

Need support? Visit mcpeblocker.uz for contact information.