Skip to content
VS Code

grubhub for VS Code

io.github.markswendsen-code/grubhub

MCP server for GrubHub - let AI agents order food and manage restaurant delivery autonomously

client:VS Code transport:stdio runtime:npm

Install grubhub in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "grubhub-email",
      "description": "GRUBHUB_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "grubhub-password",
      "description": "GRUBHUB_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "grubhub": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@striderlabs/mcp-grubhub"
      ],
      "env": {
        "GRUBHUB_EMAIL": "${input:grubhub-email}",
        "GRUBHUB_PASSWORD": "${input:grubhub-password}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

grubhub in other clients