Food ordering platform
## Grubhub MCP Server: Food Ordering Platform The **Grubhub MCP Server** integrates the Grubhub food ordering platform into Google Antigravity, enabling AI-assisted restaurant discovery, order management, and delivery coordination for convenient dining. ### Why Grubhub MCP? - **Wide Selection**: Access thousands of local and chain restaurants for delivery or pickup - **Smart Search**: Find restaurants by cuisine, dietary restrictions, and delivery time - **Order Tracking**: Real-time order and delivery tracking with status updates - **Reorder Favorites**: Quick access to past orders and favorite items - **Special Offers**: Access deals, promotions, and loyalty rewards ### Key Features #### 1. Restaurant Discovery ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find vegetarian-friendly restaurants with delivery under 45 minutes" }] ) ``` #### 2. Order Management ```python # Manage orders response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Place an order for pizza with custom toppings for delivery at 7 PM" }] ) ``` #### 3. Order Status ```python # Track order response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Check the status of my current order and estimated arrival time" }] ) ``` #### 4. Favorites ```python # Access favorites response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show my saved restaurants and frequently ordered items" }] ) ``` ### Configuration ```json { "mcpServers": { "grubhub": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-grubhub"], "env": { "GRUBHUB_API_KEY": "your-api-key", "GRUBHUB_USER_ADDRESS": "your-delivery-address" } } } } ``` ### Use Cases **Quick Meals**: Order food quickly from favorite restaurants. **Dietary Needs**: Find restaurants matching specific dietary requirements. **Scheduled Orders**: Plan meals ahead with scheduled delivery times. **Deal Finding**: Discover promotions and save on orders. The Grubhub MCP Server brings food delivery convenience into your workflow.
{
"mcpServers": {
"grubhub": {
"mcpServers": {
"grubhub": {
"env": {
"GRUBHUB_API_KEY": "your-api-key"
},
"args": [
"-y",
"grubhub-mcp-server"
],
"command": "npx"
}
}
}
}
}