Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.markswendsen-code/doordash

NPM · @STRIDERLABS/MCP-DOORDASH · SCANNED AUG 3

MCP server for DoorDash - let AI agents order food delivery autonomously with browser-based ordering

+44 this week 69 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (97 of 101), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability77
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 455 tokens (~50/item across 9 items; 9 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @striderlabs/mcp-doordash

# add to Claude Code
claude mcp add markswendsen-code-doordash -- npx -y @striderlabs/mcp-doordash
# add to Codex CLI
codex mcp add markswendsen-code-doordash -- npx -y @striderlabs/mcp-doordash
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "markswendsen-code-doordash": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@striderlabs/mcp-doordash"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add markswendsen-code-doordash --command npx --arg -y --arg @striderlabs/mcp-doordash
# ~/.hermes/config.yaml
mcp_servers:
  markswendsen-code-doordash:
    command: "npx"
    args: ["-y", "@striderlabs/mcp-doordash"]
// mcp.json
{
  "mcpServers": {
    "markswendsen-code-doordash": {
      "command": "npx",
      "args": [
        "-y",
        "@striderlabs/mcp-doordash"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 2 Aug 26 +33
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Malware scan: unverified → pass security
    • Maintenance: unverified → pass functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Stability: unverified → 0.20 functional
    • Licence: MIT functional
  • 1 Aug 26 +31
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Tool coverage: unverified → 100 functional
    • MCP protocol: unverified → pass functional
  • 31 Jul 26 −1
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −74
    • Known CVEs: partial → unverified security
    • Malware scan: pass → unverified security
    • Provenance: fail → unverified security
    • Install scripts: pass → unverified security
    • Tool coverage: 100 → unverified functional
    • License: pass → unverified functional
    • Dependency health: partial → unverified functional
    • Maintenance: pass → unverified functional
    • Licence: MIT functional
  • 28 Jul 26 +55
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Security disclosure: unverified → fail functional
    • Maintenance: unverified → pass functional
    • License: unverified → pass functional
    • Tool coverage: unverified → 100 functional
    • First check of Tool coverage: 100 functional
    • First check of Schema quality: pass functional
    • First check of Schema quality: excellent functional
    • First check of Schema quality: fail functional
    • Licence: MIT functional
  • 27 Jul 26 25

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@striderlabs/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 97 packages

97 packages in the resolved dependency tree · 97 deprecated · 30 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 9 exposed · ~455 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
doordash_add_to_cart ~90

Add a menu item to the cart. Must be on a restaurant page first (use doordash_menu).

NameTypeReqDescription
itemNamestringyesName of the menu item to add
quantitynumberQuantity to add (default: 1)
restaurantIdstringyesThe restaurant ID
specialInstructionsstringSpecial instructions for the item (optional)

No output schema declared.

No examples provided.

doordash_auth_check ~39

Check if user is logged in to DoorDash. Returns login status and instructions if not authenticated. Call this before any other DoorDash operations.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

doordash_auth_clear ~28

Clear stored DoorDash session cookies. Use this to log out or reset authentication state.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

doordash_cart ~23

View current cart contents, including items, quantities, and totals.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

doordash_checkout ~55

Proceed to checkout and optionally place the order. Set confirm=false to preview order details, confirm=true to actually place the order.

NameTypeReqDescription
confirmbooleanyesSet to true to actually place the order, false to just preview

No output schema declared.

No examples provided.

doordash_menu ~41

Get the full menu for a specific restaurant. Returns categories and items with prices.

NameTypeReqDescription
restaurantIdstringyesThe restaurant ID (from search results)

No output schema declared.

No examples provided.

doordash_search ~72

Search for restaurants on DoorDash. Can search by restaurant name, food type, or cuisine.

NameTypeReqDescription
cuisinestringFilter by cuisine type (e.g., 'pizza', 'chinese', 'mexican')
querystringyesSearch query (restaurant name, food type, or cuisine)

No output schema declared.

No examples provided.

doordash_set_address ~54

Set the delivery address for DoorDash orders. Must be set before searching for restaurants.

NameTypeReqDescription
addressstringyesFull delivery address (e.g., '123 Main St, San Francisco, CA 94102')

No output schema declared.

No examples provided.

doordash_track_order ~53

Track the status of an order. Shows delivery progress, estimated time, and dasher info if available.

NameTypeReqDescription
orderIdstringOrder ID to track (optional - defaults to most recent active order)

No output schema declared.

No examples provided.