Doordash MCP Server

MCP server for DoorDash API integration

Local serverstdio

What is the Doordash MCP MCP server?

MCP server for DoorDash API integration. That is what the doordash mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

A minimal Model Context Protocol (MCP) server that bridges the DoorDash Drive API with MCP-compatible clients.

  • create_delivery_quote — Get delivery quotes for pickup/dropoff locations
  • create_delivery — Create new delivery requests
  • get_delivery — Check status of existing deliveries
  • cancel_delivery — Cancel pending deliveries
  • accept_delivery_quote — Accept a quote and optionally include a tip
  • update_delivery — Update delivery addresses, times, or other details

The tools it exposes

The server publishes 4 tools. What each one is for:

  • create_delivery_quote — The create_delivery_quote tool exposed by this server
  • create_delivery — The create_delivery tool exposed by this server
  • get_delivery — The get_delivery tool exposed by this server
  • cancel_delivery — The cancel_delivery tool exposed by this server

What it needs from you

Configuration is passed through the environment: DOORDASH_DEVELOPER_ID, DOORDASH_KEY_ID, DOORDASH_SIGNING_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  1. DoorDash Drive API access (contact DoorDash for business partnership) 2. Node.js 12+ 3. Required environment variables: - DOORDASH_DEVELOPER_ID - DOORDASH_KEY_ID - DOORDASH_SIGNING_SECRET

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Doordash MCP's toolset — create_delivery_quote, create_delivery, get_delivery and 1 more — is a fair guide to whether it matches your workflow. It is maintained by amannm; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Doordash MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
create_delivery_quoteThe create_delivery_quote tool exposed by this server.
create_deliveryThe create_delivery tool exposed by this server.
get_deliveryThe get_delivery tool exposed by this server.
cancel_deliveryThe cancel_delivery tool exposed by this server.

How to install the Doordash MCP MCP server

## Usage

### As MCP Server

```json
{
  "mcpServers": {
    "doordash": {
      "command": "node",
      "args": ["/path/to/doordash-mcp/index.js"],
      "env": {
        "DOORDASH_DEVELOPER_ID": "your_developer_id",
        "DOORDASH_KEY_ID": "your_key_id", 
        "DOORDASH_SIGNING_SECRET": "your_signing_secret"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  1. DoorDash Drive API access (contact DoorDash for business partnership) 2. Node.js 12+ 3. Required environment variables: - DOORDASH_DEVELOPER_ID - DOORDASH_KEY_ID - DOORDASH_SIGNING_SECRET
VariableDescriptionRequired
DOORDASH_DEVELOPER_IDConfiguration value read at startup.Optional
DOORDASH_KEY_IDCredential the server authenticates with.Yes
DOORDASH_SIGNING_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Doordash MCP to create delivery quote.
  • Use Doordash MCP to create delivery.
  • Use Doordash MCP to get delivery.

Frequently asked questions

It connects Doordash MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (create_delivery_quote, create_delivery, get_delivery, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Doordash MCP directly.