Restaurant Reservation MCP Server
Enables users to search, check availability, and book restaurant reservations across Resy and OpenTable platforms. It supports direct booking for Resy and includes an automated reservation 'sniper' for securing high-demand slots the moment they become available.
README
Restaurant Reservation MCP Server
A local MCP server for searching and booking restaurant reservations through Resy and OpenTable.
Features
- Unified Search: Search both Resy and OpenTable with a single query
- Real-time Availability: Check available time slots for any date
- Direct Booking: Book Resy reservations directly; get booking links for OpenTable
- Reservation Sniper: Auto-book the instant slots become available
- Secure Credentials: All credentials stored in Windows Credential Manager (encrypted with DPAPI)
Installation
cd C:\Users\jrkle\Desktop\restaurant-mcp
npm install
npm run build
Configure Claude Code
Add to ~/.claude/settings.json:
{
"mcpServers": {
"restaurant-reservations": {
"command": "node",
"args": ["C:\\Users\\jrkle\\Desktop\\restaurant-mcp\\dist\\index.js"]
}
}
}
Getting Started
1. Set Up Resy Credentials
First, you need your Resy API key and auth token. You can find these in your browser's developer tools while logged into resy.com:
# In Claude, use these tools:
set_credentials(platform: "resy", api_key: "YOUR_API_KEY", auth_token: "YOUR_TOKEN")
# Or for automatic token refresh, use:
set_login(platform: "resy", email: "your@email.com", password: "your-password")
2. Search for Restaurants
search_restaurants(query: "Carbone", location: "New York", party_size: 2)
You don't need to know which platform a restaurant uses! The search automatically checks both Resy and OpenTable in parallel. Each result includes a platform field (resy or opentable) and an ID like resy-12345 or opentable-67890 - just use these directly with check_availability and make_reservation.
3. Check Availability
check_availability(restaurant_id: "resy-12345", platform: "resy", date: "2025-02-15", party_size: 2)
4. Book a Reservation
make_reservation(
restaurant_id: "resy-12345",
platform: "resy",
slot_id: "123456",
party_size: 2,
date: "2025-02-15"
)
Reservation Sniper
For popular restaurants that release reservations at specific times:
snipe_reservation(
restaurant_id: "resy-12345",
platform: "resy",
date: "2025-02-15",
party_size: 2,
preferred_times: ["7:00 PM", "7:30 PM", "8:00 PM"],
release_time: "2025-02-01T09:00:00"
)
The sniper will:
- Start polling 30 seconds before release time
- Poll every 500ms once release time hits
- Instantly book the first matching slot
- Return confirmation or error
Available Tools
| Tool | Description |
|---|---|
search_restaurants |
Search restaurants by name/location on Resy and/or OpenTable |
check_availability |
Get available time slots for a restaurant |
make_reservation |
Book a reservation |
list_reservations |
View your upcoming reservations |
cancel_reservation |
Cancel a booking |
set_credentials |
Store API key/token securely |
set_login |
Store email/password for auto-refresh |
check_auth_status |
Verify credentials are valid |
refresh_token |
Manually refresh auth token |
snipe_reservation |
Schedule auto-booking when slots open |
list_snipes |
View scheduled snipes |
cancel_snipe |
Cancel a scheduled snipe |
Security
- No credit card data: This MCP never handles payment info. Bookings use payment methods saved in your Resy/OpenTable accounts.
- Windows Credential Manager: All credentials encrypted with DPAPI (same security as Chrome/Edge passwords)
- No files: Credentials never written to disk files
- HTTPS only: All API calls use TLS 1.3
- Rate limited: Max 10 requests/minute per platform
Platform Notes
Resy
- Full booking support via unofficial API
- Automatic token refresh when expired
- Can view and cancel reservations
OpenTable
- Search and availability work without auth
- Cannot complete booking via API - returns a URL to finish on OpenTable's website
- Reservation listing not available
Troubleshooting
"Resy API key not configured"
Run set_credentials with your API key first.
"Resy authentication failed"
Your token expired. Run set_login to enable auto-refresh, or manually get a new token.
OpenTable booking returns URL
This is expected. OpenTable doesn't allow third-party booking - click the URL to complete on their site.
Limitations
- Uses unofficial APIs that could change
- OpenTable requires manual booking completion
- For personal use only
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.