MCP server for DoorDash - let AI agents order food delivery.
Built by Strider Labs.
- 🔍 Search restaurants by name, cuisine, or food type
- 📜 Browse menus with full item details and prices
- 🛒 Add to cart with quantity and special instructions
- 💳 Place orders with confirmation step
- 📍 Track orders with real-time status updates
- 🔐 Persistent sessions - stay logged in across restarts
npm install -g @striderlabs/mcp-doordashOr with npx:
npx @striderlabs/mcp-doordashAdd to your MCP client configuration (e.g., Claude Desktop):
{
"mcpServers": {
"doordash": {
"command": "npx",
"args": ["-y", "@striderlabs/mcp-doordash"]
}
}
}The connector uses browser automation with Playwright. On first use:
- Run
doordash_auth_check- it will return a login URL - Log in to DoorDash in a browser
- Session cookies are automatically saved to
~/.config/striderlabs-mcp-doordash/cookies.json - Sessions persist across restarts
To clear your session:
doordash_auth_clear
| Tool | Description |
|---|---|
doordash_auth_check |
Check login status, get login URL if needed |
doordash_auth_clear |
Clear stored session (log out) |
| Tool | Description |
|---|---|
doordash_set_address |
Set delivery address |
doordash_search |
Search restaurants by query or cuisine |
doordash_menu |
Get full menu for a restaurant |
doordash_add_to_cart |
Add item to cart |
doordash_cart |
View current cart |
doordash_checkout |
Preview or place order |
doordash_track_order |
Track order status |
{
"tool": "doordash_search",
"arguments": {
"query": "pizza",
"cuisine": "italian"
}
}{
"tool": "doordash_menu",
"arguments": {
"restaurantId": "123456"
}
}{
"tool": "doordash_add_to_cart",
"arguments": {
"restaurantId": "123456",
"itemName": "Pepperoni Pizza",
"quantity": 2,
"specialInstructions": "Extra crispy"
}
}// First, preview the order
{
"tool": "doordash_checkout",
"arguments": {
"confirm": false
}
}
// Then, place the order
{
"tool": "doordash_checkout",
"arguments": {
"confirm": true
}
}- Node.js 18+
- Playwright browsers (auto-installed on first run)
This connector uses Playwright for browser automation:
- Headless Chrome - runs a real browser in the background
- Cookie persistence - maintains logged-in state
- Stealth mode - uses realistic browser fingerprints
- Structured responses - all data returned as JSON
- Session cookies stored locally in
~/.config/striderlabs-mcp-doordash/ - No credentials stored - uses browser-based OAuth flow
- Cookies encrypted using your system keychain (where available)
- DoorDash must be available in your region
- Some menu customizations may not be fully supported
- Order placement requires a valid payment method on your DoorDash account
git clone https://github.com/markswendsen-code/mcp-doordash.git
cd mcp-doordash
npm install
npm run build
npm startMIT © Strider Labs
- @striderlabs/mcp-gmail - Gmail MCP connector
- Model Context Protocol - Learn more about MCP