DoorDash MCP
Provides tools for searching restaurants and stores, browsing menus, managing carts, applying promotions, and placing orders through DoorDash.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DoorDash MCPI'm craving tacos, find me a good place nearby"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Poke × DoorDash CLI recipe
A Poke recipe that lets Poke order DoorDash for you over text,
powered by DoorDash's official dd-cli (limited beta, announced 2026-07-15 by
@andyfang).
Fork of DanteMagg/poke-doordash-recipe,
upgraded for dd-cli v0.2.1+ (mandatory --intent) and hardened around real
upstream failure modes (silently dropped cart items, no submit idempotency).
Poke installs recipe integrations as MCP servers, so this repo is a thin MCP
bridge: Poke → tunnel → server.mjs → dd-cli → DoorDash.
Prerequisites
dd-cli — official binary from doordash-oss/doordash-cli (macOS Apple Silicon / Linux x86_64). Download the latest release tarball, verify the SHA256, and put the binary on PATH as
dd-cli(or setDD_CLI_BIN). Full functionality is waitlist-gated — join at https://forms.gle/gvCQZvu9C1EKA6aM6.Node 22.5+ (the submission journal uses the built-in
node:sqlite).A Poke account with Kitchen access.
Log in once via
dd-cli login(interactive; credentials go to the OS keychain). Note: v0.2.2 gates even subcommand--helpbehind login.
Related MCP server: DoorDash MCP Server
Run + publish
npm install
npm test # 19 tests against a fake dd-cli; no account needed
npm start # MCP server on http://127.0.0.1:3737/mcp (loopback only)
npm run tunnel # in a second terminal: tunnels to Poke and creates the recipenpm run tunnel runs npx poke@latest tunnel http://localhost:3737/mcp -n "DoorDash CLI" --recipe,
which prints a shareable recipe link + QR code. (Log in first with npx poke@latest login.
The tunnel only forwards the port — start npm start before it.)
Then polish in Kitchen → your recipe. Use RECIPE.md as the recipe's instruction text — it's the agent-facing operating manual.
Tools exposed
28 tools. Everything from the upstream bridge, plus search_products_across_stores:
Discovery:
search_restaurants,find_nearby_stores(grocery/retail/alcohol/ convenience/pets),get_menu,find_items,search_products_across_stores(multi-store product hunt with deterministic diet/zero-sugar synonym expansion),restaurant_item_details,item_details,store_details,build_grocery_listAccount:
list_addresses,payment_methods,doordash_status(install / version / login / waitlist probe)Cart:
cart_list(pre-flight before creating carts),cart_add_items,cart_show,cart_remove_item,cart_delete— all mutations are read-back verified (upstream can silently drop items) and returnverified: trueor acart_mismatchwith exactly what's missingPromos:
promo_list,promo_apply,promo_removeOrders:
order_history,order_reorder,order_preview(relays dd-cli's--beautifysummary verbatim and mints apreview_token),order_submit,order_status,order_receipt,checkout_url(browser fallback for payment-method swaps)Escape hatch:
dd_cliraw passthrough (login,export-token, and raworder submitblocked)
Purchase safety
order_submitcharges the default card immediately. It requires a fresh single-usepreview_tokenfromorder_preview— the server re-reads the cart at submit time and refuses if the contents, fulfillment, or schedule changed since the preview — plususer_confirmed=true, legitimate only after the preview was shown, the total approved, the card NAMED (brand + last4 frompayment_methods), and the Dasher tip explicitly confirmed (in cents).Duplicate submits are blocked durably (SQLite journal in
.data/state.db, override withDD_MCP_STATE_DB): a restart, a second server instance, or a Poke retry after a timeout cannot double-order. Ambiguous submits lock the cart and are never auto-retried.Every dd-cli service call carries a mandatory
--intent(v0.2.1+) — always a deterministic description of the MCP tool being run, never the user's own words. CLIs without the flag are auto-detected.Cart writes auto-spaced ~8s apart (DoorDash rate limiting).
Errors map to a stable taxonomy (
not_logged_in,waitlist_pending,rate_limited,cart_mismatch,preview_expired,duplicate_submit_blocked,ambiguous_submit, …) with actionable messages the Poke agent can relay.Server binds to loopback only by default (
HOSTenv to override); the Poke tunnel is the intentional external bridge. Structured logs carry tool/family/ duration/error-type only — no payloads, no tokens, no card data.
Environment variables
Var | Default | Purpose |
|
| Path to the dd-cli binary |
|
| MCP server port |
|
| Bind address |
|
| SQLite path for the submission journal |
|
| Tool-response truncation cap |
| – |
|
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables AI agents to discover and order food from multiple delivery services (DoorDash, UberEats, Grubhub) using A2A protocol and process payments via Stripe with AP2 protocol mandates for cryptographically signed user authorization.1MIT
- FlicenseBqualityDmaintenanceEnables AI agents to search restaurants, browse menus, and manage DoorDash carts through structured JSON data. It leverages a background browser to handle authentication and direct GraphQL API calls for efficient interaction.72
- FlicenseBqualityDmaintenanceEnables AI agents to search restaurants, browse menus, manage carts, and place orders on DoorDash programmatically. It utilizes a headless browser to interact with DoorDash's GraphQL API and bypass anti-bot protections for the full delivery lifecycle.222
- Alicense-qualityCmaintenanceEnables ordering DoorDash via Poke over text, with tools for restaurant discovery, cart management, promo application, and order submission requiring explicit user confirmation.MIT
Related MCP Connectors
AI food ordering across Canada — 17,000+ restaurants, 89 cities, real UberEats + DoorDash.
AI-native restaurant discovery: verified/menu-indexed/discovered tiers + signed allergy-safety data.
Search direct grocery storefronts and create product-link pickup handoffs.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shivanished/doordash-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server