Food delivery service
## DoorDash MCP Server: Food Delivery Platform The **DoorDash MCP Server** integrates the DoorDash food delivery platform into Google Antigravity, enabling AI-assisted order management, restaurant discovery, and delivery tracking for convenient meal ordering. ### Why DoorDash MCP? - **Restaurant Discovery**: Find nearby restaurants with filters for cuisine, ratings, and delivery time - **Order Management**: Place, track, and manage food delivery orders efficiently - **Order History**: Access past orders for easy reordering of favorites - **Real-Time Tracking**: Monitor delivery progress with live driver updates - **Schedule Orders**: Schedule orders in advance for planned meal times ### Key Features #### 1. Restaurant Search ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find highly-rated Thai restaurants that deliver to my location within 30 minutes" }] ) ``` #### 2. Order Placement ```python # Place order response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Order my usual from the saved favorites - the pad thai combo" }] ) ``` #### 3. Delivery Tracking ```python # Track delivery response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Track my current order and estimated delivery time" }] ) ``` #### 4. Order History ```python # View history response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show my recent orders and let me reorder from last week" }] ) ``` ### Configuration ```json { "mcpServers": { "doordash": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-doordash"], "env": { "DOORDASH_API_KEY": "your-api-key", "DOORDASH_DELIVERY_ADDRESS": "your-default-address" } } } } ``` ### Use Cases **Meal Ordering**: Quickly order food from favorite restaurants. **Team Lunches**: Coordinate group orders for office meals. **Scheduled Delivery**: Plan ahead with scheduled order placement. **Restaurant Discovery**: Find new dining options based on preferences. The DoorDash MCP Server brings convenient food delivery into your workflow for seamless meal ordering.
{
"mcpServers": {
"doordash": {
"mcpServers": {
"doordash": {
"env": {
"DOORDASH_CLIENT_ID": "your-client-id",
"DOORDASH_CLIENT_SECRET": "your-secret"
},
"args": [
"-y",
"doordash-mcp-server"
],
"command": "npx"
}
}
}
}
}