Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ubereats": {
"args": [
"-y",
"@striderlabs/mcp-ubereats"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Uber Eats - let AI agents order food delivery
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@striderlabs/mcp-ubereats' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @striderlabs/mcp-ubereats against OSV.dev.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ecommerce
Production-grade MCP server and CLI tool for Shopify Admin GraphQL API — 49+ tools, YAML-extensible, dual auth, dual transport, Docker-ready
A command line tool for setting up commercetools MCP server
35+ AI tools for TCG card grading, Monte Carlo pricing, 370K+ product search. BYOK.
This is the reference implementation for the mcp server
MCP Security Weekly
Get CVE alerts and security updates for io.github.markswendsen-code/ubereats and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for Uber Eats — let AI agents search restaurants, browse menus, place orders, and track deliveries.
Built by Strider Labs.
npm install -g @striderlabs/mcp-ubereats
Or run directly with npx:
npx @striderlabs/mcp-ubereats
Add to your MCP client configuration (e.g., Claude Desktop ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"ubereats": {
"command": "npx",
"args": ["-y", "@striderlabs/mcp-ubereats"]
}
}
}
This connector uses Playwright browser automation. On first use:
ubereats_status — it will return a login URLubereats_status again to verify the session was saved~/.strider/ubereats/cookies.jsonTo log out or reset your session:
ubereats_logout
| Tool | Description |
|---|---|
ubereats_status | Check login status; returns login URL if not authenticated |
ubereats_login | Get the login URL to open in a browser |
ubereats_logout | Clear stored session cookies (log out) |
| Tool | Description |
|---|---|
ubereats_set_address | Set delivery address before searching |
| Tool | Description |
|---|---|
ubereats_search | Search restaurants by name, food type, or cuisine |
ubereats_get_restaurant | Get restaurant details and full menu |
| Tool | Description |
|---|---|
ubereats_add_to_cart | Add an item to cart with quantity and special instructions |
ubereats_view_cart | View current cart contents and totals |
ubereats_clear_cart | Remove all items from cart |
ubereats_checkout | Preview or place the order (confirm=true to place) |
ubereats_track_order | Track an active order's status and ETA |
{
"tool": "ubereats_status"
}
{
"tool": "ubereats_set_address",
"arguments": {
"address": "123 Main St, San Francisco, CA 94102"
}
}
{
"tool": "ubereats_search",
"arguments": {
"query": "sushi",
"cuisine": "japanese"
}
}
{
"tool": "ubereats_get_restaurant",
"arguments": {
"restaurantId": "nobu-restaurant-sf"
}
}
{
"tool": "ubereats_add_to_cart",
"arguments": {
"restaurantId": "nobu-restaurant-sf",
"itemName": "Spicy Tuna Roll",
"quantity": 2,
"specialInstructions": "No wasabi please"
}
}
{
"tool": "ubereats_checkout",
"arguments": {
"confirm": false
}
}
{
"tool": "ubereats_checkout",
"arguments": {
"confirm": true
}
}
{
"tool": "ubereats_track_order",
"arguments": {
"orderId": "abc123"
}
}
1. ubereats_status — check if logged in
2. ubereat
... [View full README on GitHub](https://github.com/markswendsen-code/mcp-ubereats#readme)