@striderlabs/mcp-ubereats
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ubereats_statusA | Check if the user is logged in to Uber Eats. Returns login status and setup instructions if not authenticated. Always call this before any other Uber Eats operations. |
| ubereats_loginA | Get the Uber Eats login URL for the user to authenticate. Returns a URL the user can open in their browser to log in. After logging in, call ubereats_status to verify. |
| ubereats_logoutA | Clear the stored Uber Eats session cookies, effectively logging out. Use this to reset authentication or switch accounts. |
| ubereats_set_addressA | Set the delivery address for Uber Eats orders. Must be set before searching for restaurants. Provide a full street address including city and zip code. |
| ubereats_searchA | Search for restaurants on Uber Eats. Can search by restaurant name, food type, or cuisine. Returns a list of matching restaurants with delivery info. |
| ubereats_get_restaurantA | Get full details and menu for a specific restaurant. Returns restaurant info (rating, delivery time, fees) and the complete menu organized by category. |
| ubereats_add_to_cartA | Add a menu item to the cart. The restaurant must be loaded first via ubereats_get_restaurant. Supports quantity and special instructions. |
| ubereats_view_cartA | View the current cart contents, including all items, quantities, prices, and the total cost with delivery fee. |
| ubereats_clear_cartA | Remove all items from the current cart. Use this to start a new order or switch restaurants. |
| ubereats_checkoutA | Preview or place the order. Set confirm=false (default) to preview the order summary including items, fees, and estimated delivery. Set confirm=true to actually place the order. Always preview before placing. |
| ubereats_track_orderA | Track the status of an active order. Returns order status, estimated delivery time, driver info (if available), and order details. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 11 tools
Each tool has a distinct and non-overlapping purpose, covering authentication, search, cart management, checkout, and tracking without ambiguity.
All tools follow a consistent 'ubereats_<verb>_<noun>' or 'ubereats_<verb>' pattern, making them predictable and easy to understand.
11 tools is well-scoped for a food ordering service, covering all essential steps from login to tracking without being excessive or insufficient.
The tool set covers the full lifecycle of ordering, but lacks a tool to remove individual items or edit quantities in the cart, which is a minor gap.