DoorDash MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
git clone https://github.com/SpunkySarb/doordash-mcp
cd doordash-mcp
npm install
npx playwright install chromium
2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add -e "DOORDASH_EMAIL=${DOORDASH_EMAIL}" doordash-mcp -- node "<FULL_PATH_TO_DOORDASH_MCP>/dist/index.js"

Replace <FULL_PATH_TO_DOORDASH_MCP>/dist/index.js with the actual folder you prepared in step 1.

Required:DOORDASH_EMAIL
README.md

Search restaurants, browse menus, and manage your DoorDash cart

DoorDash MCP Server

An MCP (Model Context Protocol) server that lets AI agents search restaurants, browse menus, compare prices, and manage your DoorDash cart — all without opening a browser or wasting tokens on HTML parsing.

How It Works

Instead of using a browser-based AI agent (which eats context and tokens parsing HTML), this MCP server runs a lightweight background browser that handles authentication and API calls. Your AI agent gets clean JSON — no HTML, no screenshots, no wasted tokens.

Under the hood, it uses DoorDash's internal GraphQL API (reverse-engineered from web traffic) via a Playwright browser instance that maintains your session.

Features

Tool Description
login_check Check if your DoorDash session is active
search_restaurants Search restaurants and food by keyword
get_store_menu Get full menu with prices, deals, and badges
add_to_cart Add items to your cart
remove_from_cart Remove items from cart
list_carts View all active carts
order_history Get recent order history

Deals and promotions (Buy 1 Get 1 Free, DashPass offers, etc.) are surfaced in both search results and menu items.

Setup

1. Install

git clone <this-repo>
cd doordash-mcp
npm install
npx playwright install chromium

2. Configure Email

cp .env.example .env

Edit .env and set your DoorDash account email:

DOORDASH_EMAIL=your-email@example.com

3. Login (one-time)

node login.js

This opens a browser, sends an OTP to your email/phone, and saves the session. You only need to do this once (or when your session expires).

On headless Linux: The script auto-starts a virtual display via Xvfb. Make sure xvfb is installed (sudo apt install xvfb).

4. Add to Claude Code

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "doordash": {
      "command": "node",
      "args": ["/absolute/path/to/doordash-mcp/mcp-server.js"]
    }
  }
}

Restart Claude Code to pick up the new server.

Usage

Once configured, just talk to your AI agent naturally:

  • "Search for biryani near me"
  • "Show me the Pizza Hut menu"
  • "What's the cheapest dosa at Thanjai Restaurant?"
  • "Add 2 Masala Dosas to my cart"
  • "What did I order last time?"
  • "Find me a burger place with deals"

How the Spy Tool Works

Want to discover new endpoints or debug? The spy.js script opens a browser and logs all DoorDash API traffic as you browse:

node spy.js

Browse DoorDash normally — search, view menus, add to cart. All API calls get logged to logs/api-calls.jsonl. Close the browser when done.

Architecture

AI Agent  ──(MCP stdio)──>  mcp-server.js  ──(GraphQL via Playwright)──>  DoorDash API
                                 │
                            browser-data/    (persistent session cookies)
  • No headless HTTP: Cloudflare blocks plain HTTP requests. The server uses a real browser (positioned off-screen on macOS, or via Xvfb on Linux)
  • Persistent session: Login once, the browser profile in browser-data/ keeps your cookies alive
  • Minimal tokens: AI agents get structured JSON, never HTML

Platform Notes

Platform How it runs
macOS Browser window positioned off-screen (-32000, -32000)
Linux with display Same as macOS
Linux headless (SSH) Auto-starts Xvfb virtual display

Disclaimer

This project reverse-engineers DoorDash's internal web APIs for personal use. It is not affiliated with, endorsed by, or connected to DoorDash in any way. Use at your own risk — endpoints may change without notice, and automated access may violate DoorDash's Terms of Service.

License

MIT

Tools (7)

login_checkCheck if your DoorDash session is active
search_restaurantsSearch restaurants and food by keyword
get_store_menuGet full menu with prices, deals, and badges
add_to_cartAdd items to your cart
remove_from_cartRemove items from cart
list_cartsView all active carts
order_historyGet recent order history

Environment Variables

DOORDASH_EMAILrequiredYour DoorDash account email address

Configuration

claude_desktop_config.json
{"mcpServers": {"doordash": {"command": "node", "args": ["/absolute/path/to/doordash-mcp/mcp-server.js"]}}}

Try it

Search for biryani near me
Show me the Pizza Hut menu
What's the cheapest dosa at Thanjai Restaurant?
Add 2 Masala Dosas to my cart
What did I order last time?

Frequently Asked Questions

What are the key features of DoorDash MCP Server?

Search restaurants and food items by keyword. Retrieve full menus including prices, deals, and badges. Manage DoorDash carts by adding or removing items. View active carts and order history. Uses a persistent browser session to avoid repeated logins.

What can I use DoorDash MCP Server for?

Quickly comparing prices across different local restaurants. Automating the addition of frequent orders to a cart. Checking order history to reorder favorite meals. Finding restaurants with active promotions or deals.

How do I install DoorDash MCP Server?

Install DoorDash MCP Server by running: git clone https://github.com/SpunkySarb/doordash-mcp && cd doordash-mcp && npm install && npx playwright install chromium

What MCP clients work with DoorDash MCP Server?

DoorDash MCP Server works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep DoorDash MCP Server docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare