Skip to content
VS Code

opentable for VS Code

io.github.markswendsen-code/opentable

MCP server for OpenTable - let AI agents book restaurant reservations and manage dining autonomously

client:VS Code transport:stdio runtime:npm

Install opentable in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "opentable-email",
      "description": "OPENTABLE_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "opentable-password",
      "description": "OPENTABLE_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "opentable-location",
      "description": "OPENTABLE_LOCATION",
      "password": true
    }
  ],
  "servers": {
    "opentable": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@striderlabs/mcp-opentable"
      ],
      "env": {
        "OPENTABLE_EMAIL": "${input:opentable-email}",
        "OPENTABLE_PASSWORD": "${input:opentable-password}",
        "OPENTABLE_LOCATION": "${input:opentable-location}"
      }
    }
  }
}

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

opentable in other clients