@striderlabs/mcp-doordash
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DOORDASH_EMAIL | No | Optional email for a specific DoorDash account | |
| DOORDASH_PASSWORD | No | Optional password for a specific DoorDash account (recommended to use .env file) |
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 |
|---|---|
| doordash_auth_checkA | Check if user is logged in to DoorDash. Returns login status and instructions if not authenticated. Call this before any other DoorDash operations. |
| doordash_auth_clearA | Clear stored DoorDash session cookies. Use this to log out or reset authentication state. |
| doordash_set_addressA | Set the delivery address for DoorDash orders. Must be set before searching for restaurants. |
| doordash_searchB | Search for restaurants on DoorDash. Can search by restaurant name, food type, or cuisine. |
| doordash_menuA | Get the full menu for a specific restaurant. Returns categories and items with prices. |
| doordash_add_to_cartA | Add a menu item to the cart. Must be on a restaurant page first (use doordash_menu). |
| doordash_cartA | View current cart contents, including items, quantities, and totals. |
| doordash_checkoutA | Proceed to checkout and optionally place the order. Set confirm=false to preview order details, confirm=true to actually place the order. |
| doordash_track_orderA | Track the status of an order. Shows delivery progress, estimated time, and dasher info if available. |
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 9 tools
Each tool covers a distinct step in the DoorDash workflow (auth, address, search, menu, cart, checkout, tracking) with no overlapping functionality.
All tools are prefixed with 'doordash_' and use a consistent verb or verb_noun pattern (e.g., auth_check, add_to_cart, track_order).
With 9 tools covering the essential order lifecycle, the count is well-scoped for a delivery service integration.
Covers auth, address, search, menu, cart actions, checkout, and tracking. Missing a tool to remove items from cart, but core ordering flow is complete.