{"name":"geraeats","description":"GeraEats food delivery platform — search restaurants, browse menus, place orders, and track deliveries in real time across 50+ countries.","version":"0.1.0","url":"https://geraeats.com","contact":"api@gera.services","tools":[{"name":"search_restaurants","description":"Search restaurants by cuisine, location, rating, and delivery time. Returns restaurant listings with menus and estimated delivery times.","input_schema":{"type":"object","properties":{"query":{"type":"string","description":"Restaurant name or cuisine type (e.g. pizza, sushi, georgian)"},"country":{"type":"string","description":"ISO 3166-1 alpha-2 country code"},"city":{"type":"string","description":"City name"},"cuisine":{"type":"string","description":"Cuisine type slug (e.g. italian, chinese, local)"},"rating_min":{"type":"number","description":"Minimum restaurant rating from 1 to 5"},"delivery_time_max":{"type":"number","description":"Maximum delivery time in minutes"}}}},{"name":"browse_menu","description":"Get the full menu for a restaurant including items, prices, and dietary info.","input_schema":{"type":"object","required":["restaurant_id"],"properties":{"restaurant_id":{"type":"string","description":"Restaurant UUID"},"category":{"type":"string","description":"Filter by menu category (e.g. starters, mains, desserts)"}}}},{"name":"place_order","description":"Place a food delivery order from a restaurant.","input_schema":{"type":"object","required":["restaurant_id","items","delivery_address"],"properties":{"restaurant_id":{"type":"string","description":"Restaurant UUID"},"items":{"type":"array","description":"Array of order items","items":{"type":"object","properties":{"item_id":{"type":"string","description":"Menu item UUID"},"quantity":{"type":"number","description":"Number of units"}}}},"delivery_address":{"type":"string","description":"Full delivery address"},"payment_method":{"type":"string","description":"Payment method slug (e.g. card, cash, mobile-money)"},"notes":{"type":"string","description":"Special instructions for the restaurant or driver"}}}},{"name":"track_delivery","description":"Track a live delivery order with real-time driver location and ETA.","input_schema":{"type":"object","required":["order_id"],"properties":{"order_id":{"type":"string","description":"Order UUID from place_order"}}}}],"resources":[{"name":"restaurants","description":"Restaurant listings directory","url":"https://geraeats.com/api/v1/restaurants"},{"name":"cuisines","description":"Available cuisine types","url":"https://geraeats.com/api/v1/cuisines"},{"name":"countries","description":"Supported countries and cities","url":"https://geraeats.com/api/v1/countries"}]}