2.1k★by regalstreak
swiggy – OpenClaw Skill
swiggy is an OpenClaw Skills integration for devops workflows. Order food, groceries, and book restaurants in India via Swiggy's MCP servers. Food delivery, Instamart groceries, and Dineout restaurant bookings with safety-first confirmation workflow.
Skill Snapshot
| name | swiggy |
| description | Order food, groceries, and book restaurants in India via Swiggy's MCP servers. Food delivery, Instamart groceries, and Dineout restaurant bookings with safety-first confirmation workflow. OpenClaw Skills integration. |
| owner | regalstreak |
| repository | regalstreak/swiggy |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @regalstreak/swiggy |
| last updated | Feb 7, 2026 |
Maintainer

name: swiggy description: "Order food, groceries, and book restaurants in India via Swiggy's MCP servers. Food delivery, Instamart groceries, and Dineout restaurant bookings with safety-first confirmation workflow."
Swiggy Skill
Order food, groceries, and book restaurants in India via Swiggy's MCP servers.
Installation
The skill includes a swiggy CLI binary. After installing the skill:
cd skills/swiggy
npm link
This creates a global swiggy command. Verify with: which swiggy
When to Use
- Food delivery: "Order biryani", "What's open late?", "Team lunch for 8"
- Groceries (Instamart): "Get eggs and milk", "Weekly groceries", "Recipe ingredients"
- Restaurant bookings (Dineout): "Book dinner Saturday 8pm", "Italian in Koramangala"
Available Commands
Food Delivery
# Search restaurants
swiggy food search "biryani" --location "Koramangala, Bengaluru"
# Get menu
swiggy food menu <restaurant-id>
# Cart management
swiggy food cart add <item-id> --quantity 2
swiggy food cart show
swiggy food cart clear
# Order (requires confirmation)
swiggy food order --address "home" --confirm
Instamart (Groceries)
# Search products
swiggy im search "eggs" --location "HSR Layout, Bengaluru"
# Cart operations
swiggy im cart add <item-id> --quantity 3
swiggy im cart show
swiggy im cart clear
# Checkout (requires confirmation)
swiggy im order --address "home" --confirm
Dineout (Restaurant Bookings)
# Search restaurants
swiggy dineout search "Italian Indiranagar"
# Get details
swiggy dineout details <restaurant-id>
# Check availability
swiggy dineout slots <restaurant-id> --date 2026-01-30
# Book table (free bookings only, requires confirmation)
swiggy dineout book <restaurant-id> --date 2026-01-30 --time 20:00 --guests 2 --confirm
CRITICAL: Safety Rules
⚠️ NEVER Auto-Order
ALWAYS get explicit confirmation before placing orders.
-
Show cart preview first:
- All items with quantities and prices
- Total amount
- Delivery address
- Estimated delivery time (food/groceries)
-
Ask for confirmation:
Ready to order: - 2x Chicken Biryani (₹500) - 1x Raita (₹60) Total: ₹560 + delivery Deliver to: Home (HSR Layout) ETA: 30-40 mins Confirm order? (yes/no) -
Only after user says YES:
- Run the order command with
--confirmflag - Log to
memory/swiggy-orders.json
- Run the order command with
COD Warning
Swiggy MCP currently supports Cash on Delivery only. Orders cannot be cancelled once placed. Always double-check before confirming.
Address Handling
- User may say "home", "office", etc. - map to actual addresses from USER.md or ask
- Always confirm delivery location in preview
- For Dineout, location is used for search only (not delivery)
Workflow Examples
Food Order Flow
# 1. Search
swiggy food search "biryani near Koramangala"
# 2. Browse menu (use restaurant ID from search)
swiggy food menu rest_12345
# 3. Add to cart
swiggy food cart add item_67890 --quantity 1
# 4. Preview cart
swiggy food cart show
# 5. Show preview to user, ask confirmation
# 6. If confirmed, order
swiggy food order --address "HSR Layout, Sector 2, Bengaluru" --confirm
Grocery Shopping Flow
# 1. Search items
swiggy im search "eggs" --location "Koramangala"
swiggy im search "milk" --location "Koramangala"
# 2. Add to cart
swiggy im cart add item_11111 --quantity 2
swiggy im cart add item_22222 --quantity 1
# 3. Preview
swiggy im cart show
# 4. Confirm with user
# 5. Checkout
swiggy im order --address "Koramangala, Bengaluru" --confirm
Restaurant Booking Flow
# 1. Search
swiggy dineout search "Italian Indiranagar"
# 2. Check details
swiggy dineout details rest_99999
# 3. Check slots
swiggy dineout slots rest_99999 --date 2026-01-30
# 4. Show options to user, confirm choice
# 5. Book
swiggy dineout book rest_99999 --date 2026-01-30 --time 20:00 --guests 2 --confirm
Error Handling
- No results: Suggest broader search or different location
- Out of stock: Show alternatives
- No slots available: Suggest different times/dates
- Authentication required: User needs to authenticate via OAuth (handled by MCP)
Tips
- For team orders: build cart iteratively, ask for preferences
- For budget shopping: filter results by price, show running total
- For recipe-to-cart: search each ingredient, add progressively
- For late night: mention delivery time in search criteria
Order Logging
After successful order, append to memory/swiggy-orders.json:
{
"timestamp": "2026-01-28T21:16:00+05:30",
"type": "food",
"items": [...],
"total": "₹560",
"address": "HSR Layout",
"orderId": "..."
}
Authentication
Swiggy MCP uses OAuth. First use will trigger auth flow. The swiggy CLI handles this via mcporter.
Dependencies
- Requires
mcporterskill (uses it under the hood) - Node.js runtime for the CLI wrapper
Known Limitations
- COD only (no online payment yet)
- Orders cannot be cancelled
- Dineout: free bookings only
- Don't open Swiggy app while using MCP (session conflicts)
Remember: Confirmation BEFORE ordering. Every. Single. Time. 🐾
Swiggy Skill for Clawdbot
Order food, groceries, and book restaurant tables in India through your AI agent.
What It Does
This skill integrates Swiggy's MCP servers into Clawdbot:
- Food Delivery - Search restaurants, browse menus, order food
- Instamart - Grocery shopping and delivery
- Dineout - Restaurant discovery and table bookings
Installation
Via ClawdHub:
clawdhub install swiggy
cd skills/swiggy
npm link
Manual:
cd ~/clawd/skills/swiggy
npm link
This makes the swiggy command available globally.
Verify installation:
which swiggy
swiggy # Should show usage help
Quick Start
Food Delivery
# Search for restaurants
swiggy food search "biryani" --location "Koramangala, Bengaluru"
# Browse menu
swiggy food menu rest_12345
# Add to cart
swiggy food cart add item_67890 --quantity 2
# View cart
swiggy food cart show
# Place order (requires --confirm flag)
swiggy food order --address "HSR Layout, Bengaluru" --confirm
Groceries (Instamart)
# Search products
swiggy im search "eggs" --location "HSR Layout"
# Add to cart
swiggy im cart add prod_11111 --quantity 2
# Checkout
swiggy im order --address "HSR Layout, Bengaluru" --confirm
Restaurant Bookings (Dineout)
# Search restaurants
swiggy dineout search "Italian Indiranagar"
# Check availability
swiggy dineout slots rest_99999 --date 2026-01-30
# Book table
swiggy dineout book rest_99999 --date 2026-01-30 --time 20:00 --guests 2 --confirm
Safety Features
Confirmation Required
The --confirm flag is mandatory for all orders and bookings. This prevents accidental purchases.
Without --confirm:
swiggy food order --address "home"
# ❌ Error: --confirm flag required
With --confirm:
swiggy food order --address "home" --confirm
# ✅ Order placed
Always Preview First
Workflow:
- Build cart (
cart add) - Preview (
cart show) - Confirm with user
- Order (
order --confirm)
COD Only
⚠️ Currently supports Cash on Delivery only. Orders cannot be cancelled after placement.
How It Works
The skill uses mcporter to connect to Swiggy's HTTP MCP servers:
- Food:
https://mcp.swiggy.com/food - Instamart:
https://mcp.swiggy.com/im - Dineout:
https://mcp.swiggy.com/dineout
Authentication
First use will trigger OAuth flow. Follow the prompts to authenticate with your Swiggy account.
Use Cases
"Order me lunch"
User: Order biryani for lunch
Agent:
1. searches "biryani near <location>"
2. shows top results
3. user picks restaurant
4. browses menu
5. adds to cart
6. shows preview with total
7. asks for confirmation
8. places order with --confirm
"Weekly groceries"
User: Get eggs, milk, bread
Agent:
1. searches each item
2. adds to cart
3. shows cart total
4. confirms address
5. places order
"Book dinner"
User: Italian dinner Saturday 8pm for 2 in Koramangala
Agent:
1. searches restaurants
2. checks slots
3. shows options
4. books with --confirm
Limitations
- COD only (no online payment yet)
- Orders cannot be cancelled
- Dineout: free bookings only
- Don't use Swiggy app simultaneously (session conflicts)
Dependencies
- Node.js ≥ 18
mcporterskill (must be installed)- Active internet connection
- Swiggy account (for OAuth)
Troubleshooting
"mcporter not found" → Install the mcporter skill first
"Authentication failed"
→ Run mcporter auth --server https://mcp.swiggy.com/food manually
"No results found" → Try broader search terms or different location
"Session conflict" → Close Swiggy app before using MCP
Credits
Built for Clawdbot by Neil Agarwal.
MCP servers provided by Swiggy (https://github.com/Swiggy/swiggy-mcp-server-manifest).
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- Requires `mcporter` skill (uses it under the hood) - Node.js runtime for the CLI wrapper
FAQ
How do I install swiggy?
Run openclaw add @regalstreak/swiggy in your terminal. This installs swiggy into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/regalstreak/swiggy. Review commits and README documentation before installing.
