Get the IMB compiler and runtime to create your own chatbots
Released: January 2025 • Single binary with Telegram adapter included
# Download
wget https://imb.mcpeblocker.uz/imb
# Make executable
chmod +x imb
# Move to PATH (optional)
sudo mv imb /usr/local/bin/imb --version
# Should output: imb 0.2.1# 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 telegramComing soon! For now, build from source with Rust.
Coming soon! For now, use WSL or 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 accessNeed support? Visit mcpeblocker.uz for contact information.