Peckish — DoorDash ordering for VS Code
io.github.cydvilla/peckish
Order food on DoorDash — compare real fee-included totals; you approve every order.
client:VS Code
transport:stdio
runtime:npm
Install Peckish — DoorDash ordering in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "dd-cli-path",
"description": "DD_CLI_PATH",
"password": true
}
],
"servers": {
"peckish": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"peckish-mcp"
],
"env": {
"DD_CLI_PATH": "${input:dd-cli-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs