Skip to content
VS Code

resy mcp for VS Code

io.github.chrischall/resy-mcp

Resy reservation management — search, book, cancel, favorites, and Priority Notify for Claude

client:VS Code transport:stdio runtime:npm

Install resy mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "resy-email",
      "description": "RESY_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "resy-password",
      "description": "RESY_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "resy-auth-token",
      "description": "RESY_AUTH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "resy-disable-fetchproxy",
      "description": "RESY_DISABLE_FETCHPROXY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "resy-api-key",
      "description": "RESY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "resy-token-cache",
      "description": "RESY_TOKEN_CACHE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "resy-token-file",
      "description": "RESY_TOKEN_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "resy-api-key-file",
      "description": "RESY_API_KEY_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "resy-capture-timeout",
      "description": "RESY_CAPTURE_TIMEOUT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "resy-ws-port",
      "description": "RESY_WS_PORT",
      "password": true
    }
  ],
  "servers": {
    "resy-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "resy-mcp"
      ],
      "env": {
        "RESY_EMAIL": "${input:resy-email}",
        "RESY_PASSWORD": "${input:resy-password}",
        "RESY_AUTH_TOKEN": "${input:resy-auth-token}",
        "RESY_DISABLE_FETCHPROXY": "${input:resy-disable-fetchproxy}",
        "RESY_API_KEY": "${input:resy-api-key}",
        "RESY_TOKEN_CACHE": "${input:resy-token-cache}",
        "RESY_TOKEN_FILE": "${input:resy-token-file}",
        "RESY_API_KEY_FILE": "${input:resy-api-key-file}",
        "RESY_CAPTURE_TIMEOUT": "${input:resy-capture-timeout}",
        "RESY_WS_PORT": "${input:resy-ws-port}"
      }
    }
  }
}

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

resy mcp in other clients