AgentHubAgentHub

resy-mcp

MCP ServerMCP Registry官方收录

io.github.chrischall/resy-mcp · v0.5.1

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

概览

resy-mcp 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "resy-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "resy-mcp"
      ]
    }
  }
}

环境变量

RESY_EMAIL可选

Your Resy account email. Optional — leave unset to use the fetchproxy browser bridge instead.

RESY_PASSWORD可选secret

Your Resy account password. Optional — leave unset to use the fetchproxy browser bridge instead.

RESY_AUTH_TOKEN可选secret

Pre-obtained x-resy-auth-token. Overrides email/password and the fetchproxy bridge. Power users / CI only.

RESY_DISABLE_FETCHPROXY可选

Set to '1' to disable the fetchproxy fallback (forces RESY_EMAIL+PASSWORD or RESY_AUTH_TOKEN).

RESY_API_KEY可选

Override the public web-app API key (rarely needed)

相关资源

统一 Manifest

{
  "id": "io.github.chrischall/resy-mcp",
  "type": "mcp-server",
  "version": "0.5.1",
  "displayName": "resy-mcp",
  "description": "Resy reservation management — search, book, cancel, favorites, and Priority Notify for Claude",
  "repository": {
    "url": "https://github.com/chrischall/resy-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "resy-mcp",
        "version": "0.5.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "RESY_EMAIL",
            "description": "Your Resy account email. Optional — leave unset to use the fetchproxy browser bridge instead."
          },
          {
            "name": "RESY_PASSWORD",
            "description": "Your Resy account password. Optional — leave unset to use the fetchproxy browser bridge instead.",
            "isSecret": true
          },
          {
            "name": "RESY_AUTH_TOKEN",
            "description": "Pre-obtained x-resy-auth-token. Overrides email/password and the fetchproxy bridge. Power users / CI only.",
            "isSecret": true
          },
          {
            "name": "RESY_DISABLE_FETCHPROXY",
            "description": "Set to '1' to disable the fetchproxy fallback (forces RESY_EMAIL+PASSWORD or RESY_AUTH_TOKEN)."
          },
          {
            "name": "RESY_API_KEY",
            "description": "Override the public web-app API key (rarely needed)"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.chrischall/resy-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.chrischall%2Fresy-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
resy-mcp — MCP Server 安装与配置 · AgentHub