DoorDash MCP Server

DoorDash MCP Server

Enables interaction with the DoorDash Drive API to create, manage, and track delivery requests including quotes, delivery creation, status checks, and cancellations.

Category
Visit Server

README

DoorDash MCP Server

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

Features

  • 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

Prerequisites

  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

Installation

git clone https://github.com/amannm/doordash-mcp.git
cd doordash-mcp
npm install

Usage

As MCP Server

{
  "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"
      }
    }
  }
}

Direct Usage

export DOORDASH_DEVELOPER_ID=your_developer_id
export DOORDASH_KEY_ID=your_key_id
export DOORDASH_SIGNING_SECRET=your_signing_secret

node index.js

API Reference

create_delivery_quote

Get a delivery quote without creating an actual delivery.

Parameters:

  • external_delivery_id (required): Unique identifier
  • pickup_address (required): Full pickup address
  • dropoff_address (required): Full dropoff address
  • pickup_business_name: Business name for pickup
  • pickup_phone_number: Contact number for pickup
  • pickup_instructions: Special pickup instructions
  • dropoff_business_name: Business name for dropoff
  • dropoff_phone_number: Contact number for dropoff
  • dropoff_instructions: Special dropoff instructions
  • order_value: Value of order in cents

create_delivery

Create an actual delivery request.

Parameters: Same as create_delivery_quote

get_delivery

Check the status of an existing delivery.

Parameters:

  • external_delivery_id (required): The delivery ID to check

cancel_delivery

Cancel a pending delivery.

Parameters:

  • external_delivery_id (required): The delivery ID to cancel

Architecture

This MCP server acts as a minimal bridge:

MCP Client <-> DoorDash MCP Server <-> DoorDash SDK <-> DoorDash Drive API

The implementation minimizes transformation between the MCP protocol and DoorDash SDK, passing through requests with minimal processing.

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured