| name | gurkerlcli |
| version | 0.1.6 |
| description | Austrian online grocery shopping via gurkerl.at. Use when user asks about "groceries", "Einkauf", "Lebensmittel bestellen", "Gurkerl", shopping cart, or wants to search/order food online in Austria. |
| tools | ["bash"] |
🥒 gurkerlcli - Austrian Grocery Shopping
Command-line interface for gurkerl.at online grocery shopping (Austria only).
Installation
brew tap pasogott/tap
brew install gurkerlcli
pipx install gurkerlcli
Authentication
Login required before use:
gurkerlcli auth login --email user@example.com --password xxx
gurkerlcli auth whoami
gurkerlcli auth logout
Session is stored securely in macOS Keychain.
Alternative: Environment variables
export GURKERL_EMAIL=your-email@example.com
export GURKERL_PASSWORD=your-password
Or add to ~/.env.local for persistence.
Commands
🔍 Search Products
gurkerlcli search "bio milch"
gurkerlcli search "äpfel" --limit 10
gurkerlcli search "brot" --json
🛒 Shopping Cart
gurkerlcli cart list
gurkerlcli cart add <product_id>
gurkerlcli cart add <product_id> -q 3
gurkerlcli cart remove <product_id>
gurkerlcli cart clear
gurkerlcli cart clear --force
📝 Shopping Lists
gurkerlcli lists list
gurkerlcli lists show <list_id>
gurkerlcli lists create "Wocheneinkauf"
gurkerlcli lists delete <list_id>
📦 Order History
gurkerlcli orders list
Example Workflows
Check What's in the Cart
gurkerlcli cart list
Output:
🛒 Shopping Cart
┌─────────────────────────────────┬──────────────┬───────────────┬──────────┐
│ Product │ Qty │ Price │ Subtotal │
├─────────────────────────────────┼──────────────┼───────────────┼──────────┤
│ 🥛 nöm BIO-Vollmilch 3,5% │ 2x 1.0 l │ €1.89 → €1.70 │ €3.40 │
│ 🧀 Bergbaron │ 1x 150 g │ €3.99 │ €3.99 │
├─────────────────────────────────┼──────────────┼───────────────┼──────────┤
│ │ │ Total: │ €7.39 │
└─────────────────────────────────┴──────────────┴───────────────┴──────────┘
⚠️ Minimum order: €39.00 (€31.61 remaining)
Search and Add to Cart
gurkerlcli search "hafermilch"
gurkerlcli cart add 123456 -q 2
Remove Product from Cart
gurkerlcli cart list --json | jq '.items[].product_id'
gurkerlcli cart remove 123456
Debugging
Use --debug flag for verbose output:
gurkerlcli cart add 12345 --debug
gurkerlcli cart remove 12345 --debug
Tips
- Minimum order: €39.00 for delivery
- Delivery slots: Check gurkerl.at website for available times
- Sale items: Prices with arrows (€1.89 → €1.70) indicate discounts
- JSON output: Use
--json flag for scripting/automation
Limitations
- ⏳ Checkout not yet implemented (use website)
- 🇦🇹 Austria only (Vienna, Graz, Linz areas)
- 🔐 Requires active gurkerl.at account
Changelog
- v0.1.6 - Fix cart remove (use DELETE instead of POST)
- v0.1.5 - Fix cart add for existing items (use POST instead of PUT)
Links