{
  "markdown": "# @striderlabs/mcp-doordash\n\n**Order food delivery via DoorDash using AI agents**\n\n[![npm](https://img.shields.io/npm/v/@striderlabs/mcp-doordash)](https://www.npmjs.com/package/@striderlabs/mcp-doordash)\n[![MCP Registry](https://img.shields.io/badge/MCP-Registry-blue)](https://mcpservers.org/servers/strider-labs-doordash)\n[![Claude Desktop](https://img.shields.io/badge/Claude-Desktop-blue)](https://docs.anthropic.com/mcp)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n\nPart of [Strider Labs](https://github.com/striderlabsdev/striderlabs) — action execution for personal AI agents.\n\n## Get Started in 2 Minutes\n\n### For Claude Desktop Users\n\n1. Add this to `~/.openclaw/config.json` or your Claude Desktop config:\n\n```json\n{\n  \"mcpServers\": {\n    \"doordash\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@striderlabs/mcp-doordash\"]\n    }\n  }\n}\n```\n\n2. Restart Claude.\n3. Tell Claude: *\"Order Thai food from nearby for delivery today\"*\n\nYour agent can now place orders. That's it.\n\n---\n\n## Installation (NPM)\n\n```bash\nnpm install @striderlabs/mcp-doordash\n```\n\nOr with npx directly:\n\n```bash\nnpx @striderlabs/mcp-doordash\n```\n\n## Features\n\n- 🔍 **Search restaurants** by name, cuisine, or food type\n- 📜 **Browse menus** with full item details and prices\n- 🛒 **Add to cart** with quantity and special instructions\n- 💳 **Place orders** with confirmation step\n- 📍 **Track orders** with real-time status updates\n- 🔐 **Persistent sessions** - stay logged in across restarts\n- 🔄 **Automatic MFA** - handles multi-factor authentication\n- 📱 **Per-user credentials** - encrypted session storage\n\n## Tested & Compatible\n\n| Component | Version | Status |\n|-----------|---------|--------|\n| **MCP SDK** | ^1.0.0 | ✅ |\n| **Node.js** | 18+ | ✅ |\n| **Claude Desktop** | Latest | ✅ |\n| **Claude (API)** | claude-3.5-sonnet+ | ✅ |\n| **Anthropic SDK** | ^0.20+ | ✅ |\n\n## Metrics\n\n- **Weekly downloads:** 395 (Apr 10-17, 2026) — #1 Strider Labs connector (+24% growth)\n- **Status:** ✅ Live in production\n- **Reliability:** 85%+ task completion rate\n- **Discovery:** npm, Claude Plugins, mcpservers.org, ClawHub, PulseMCP\n\n## Available Elsewhere\n\n- **npm:** [npmjs.com/@striderlabs/mcp-doordash](https://npmjs.com/package/@striderlabs/mcp-doordash)\n- **Claude Plugins:** Search \"Strider Labs\" in Claude\n- **mcpservers.org:** [Strider Labs DoorDash](https://mcpservers.org/servers/strider-labs-doordash)\n- **Full Strider Labs:** [github.com/striderlabsdev/striderlabs](https://github.com/striderlabsdev/striderlabs)\n\n## How It Works\n\n### For Agents\nYour agent can use these capabilities:\n```javascript\n// Search for restaurants\nrestaurants = search_restaurants({\n  location: \"San Francisco, CA\",\n  cuisine: \"Thai\",\n  max_delivery_time: 30\n})\n\n// Browse a restaurant's menu\nmenu = get_restaurant_menu({\n  restaurant_id: \"thai-place-downtown\",\n  search: \"Pad Thai\"\n})\n\n// Place an order\norder = place_order({\n  restaurant_id: \"thai-place-downtown\",\n  items: [\n    { item_id: \"pad_thai\", quantity: 1 },\n    { item_id: \"spring_rolls\", quantity: 2 }\n  ],\n  delivery_address: \"123 Main St, San Francisco, CA\",\n  special_instructions: \"Extra lime on the side\"\n})\n\n// Track delivery\nstatus = track_order({ order_id: order.order_id })\n```\n\n### Session Management\n- Each user has encrypted, persistent credentials\n- Automatic OAuth token refresh\n- MFA handling (SMS/email)\n- Sessions survive agent restarts\n\n### Reliability\n- 85%+ task completion rate\n- Automated UI change detection (connectors update when DoorDash changes)\n- Fallback paths for failures\n- 24/7 monitoring + alerting\n\n## Configuration\n\n### Environment Variables\n\n```bash\n# Optional: Use a specific DoorDash account\nDOORDASH_EMAIL=your-email@example.com\nDOORDASH_PASSWORD=your-password  # Highly recommend using .env file\n```\n\n### Self-Hosted\n\n```bash\n# Clone the repo\ngit clone https://github.com/striderlabsdev/mcp-doordash\ncd mcp-doordash\n\n# Install dependencies\nnpm install\n\n# Start the server\nnpm start\n\n# Your agent can now connect to localhost:3000\n```\n\n## Architecture\n\n### How We Connect\nThis connector uses browser automation (Playwright) to interact with DoorDash, because DoorDash doesn't have a public API. Here's why that's safe and reliable:\n\n- **User-controlled:** Your agent only accesses your own DoorDash account\n- **Session-based:** We store your login session securely, not your password\n- **Change-aware:** We detect DoorDash UI changes and alert immediately\n- **Fingerprinting:** We use realistic browser profiles to avoid bot detection\n- **Rate-limited:** We respect DoorDash's infrastructure with appropriate delays\n\n### Security\n- Credentials stored encrypted in your local `.env` or secure vault\n- Sessions isolated per user\n- No data sent to third parties\n- MIT Licensed — audit the code yourself\n\n## Support\n\n- 📖 [Full Strider Labs Docs](https://github.com/striderlabsdev/striderlabs)\n- 🐛 [Report Issues](https://github.com/striderlabsdev/mcp-doordash/issues)\n- 💬 [Discussions](https://github.com/striderlabsdev/mcp-doordash/discussions)\n- 🌐 [Website](https://striderlabs.ai)\n- 📧 [Email](mailto:hello@striderlabs.ai)\n\n## Contributing\n\nWe welcome contributions! Areas of interest:\n- Bug reports and fixes\n- Feature requests (new restaurants, cuisines, etc.)\n- Performance improvements\n- Documentation enhancements\n\nSee [CONTRIBUTING.md](../CONTRIBUTING.md) for guidelines.\n\n## License\n\nMIT — Free to use, modify, and distribute. See [LICENSE](./LICENSE) for details.\n\n---\n\n**Built by Strider Labs** — Making AI agents actually useful.\n\n[GitHub](https://github.com/striderlabsdev) | [Website](https://striderlabs.ai) | [Discord](https://discord.gg/openclaw)\n",
  "bytes": 5701,
  "sha": "e66e72aa676fae2b28e0e34a5522819a09ac8160e8476bc1aef70073b520d048",
  "repo_slug": "markswendsen-code/mcp-doordash",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_markswendsen_code_doordash_067dff07/readme"
}