N

nycrsvps.com

A reference guide for when popular New York City restaurants (Don Angie, Carbone, and more) release reservations. WebMCP tools let an agent search and filter the tracked restaurants and calculate exactly when bookings open for a chosen date.

2read
https://nycrsvps.com/

live · Travel & Booking · JSON · API for agents

Tools 2 tools

find_restaurantsread

Search and filter the NYC restaurants tracked by the site by name, cuisine, neighborhood, or reservation platform. Returns each restaurant's cuisine, neighborhood, booking platform and link, how far in advance reservations open, and the daily release time (ET).

View tool JSON
{
  "name": "find_restaurants",
  "kind": "read",
  "impl": "imperative",
  "description": "Search and filter the NYC restaurants tracked by the site by name, cuisine, neighborhood, or reservation platform. Returns each restaurant's cuisine, neighborhood, booking platform and link, how far in advance reservations open, and the daily release time (ET).",
  "inputSchema": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "Restaurant name to search for (partial, case-insensitive)."
      },
      "cuisine": {
        "type": "string",
        "description": "Cuisine type to filter by (partial, case-insensitive)."
      },
      "neighborhood": {
        "type": "string",
        "description": "NYC neighborhood/area to filter by (partial, case-insensitive)."
      },
      "reservation_method": {
        "type": "string",
        "description": "Booking platform to filter by, e.g. Resy, OpenTable, Tock, Phone (partial, case-insensitive)."
      }
    }
  }
}
get_reservation_open_dateread

Calculate exactly when reservations open for a specific tracked restaurant on a desired future date. Returns either that bookings are already open (with the link) or the exact date and time (ET) the reservations will be released.

View tool JSON
{
  "name": "get_reservation_open_date",
  "kind": "read",
  "impl": "imperative",
  "description": "Calculate exactly when reservations open for a specific tracked restaurant on a desired future date. Returns either that bookings are already open (with the link) or the exact date and time (ET) the reservations will be released.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "restaurant_name": {
        "type": "string",
        "description": "Exact name of the restaurant as it appears on NYC RSVPs."
      },
      "desired_date": {
        "type": "string",
        "format": "date",
        "description": "The date the user wants to dine, in YYYY-MM-DD format. Must be a future date."
      }
    },
    "required": [
      "restaurant_name",
      "desired_date"
    ]
  }
}