Loading...
npm install && npm run build{
"mcpServers": {
"doordash": {
"command": "node",
"args": [
"<thePathToYour>/build/index.js"
],
"env": [
{
"DOORDASH_API_KEY": "<REPLACE>"
}
]
}
}
}get_order_statusRetrieves the current status of a specific order.
Read-only operation, no side effects.
list_ordersLists recent orders with basic details.
Read-only operation, no side effects.
create_deliveryCreates a new delivery request.
Creates new resources; potential for misuse if not controlled.
cancel_deliveryCancels an existing delivery.
Potentially disruptive action if used incorrectly.
This MCP server is relatively safe for read operations and controlled write operations. However, the security of the API key is paramount, and misuse of write operations could have consequences. Rate limiting and monitoring should be implemented for production use.