← tablrr.com

INDIVIDUAL MCP TOOL

get_reservation

Look up a reservation using the confirmation token returned when it was booked (also in the confirmation email's manage link).

tablrr.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://tablrr.com/mcp/diner

No auth detected

Connect to this endpoint to inspect the live schema for get_reservation and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name, description or schema mentions credentials.
  • A tool name or description suggests sending messages.

Parent server

tablrr.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.tablrr-diner]
url = "https://tablrr.com/mcp/diner"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "tablrr-diner": {
      "type": "http",
      "url": "https://tablrr.com/mcp/diner"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: tablrr-diner
Remote MCP URL: https://tablrr.com/mcp/diner

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "tablrr-diner": {
      "url": "https://tablrr.com/mcp/diner"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "tablrr-diner": {
      "type": "http",
      "url": "https://tablrr.com/mcp/diner"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "tablrr-diner",
  "transport": "streamable-http",
  "url": "https://tablrr.com/mcp/diner"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • search_restaurants — Search Tablrr restaurants by city, cuisine, free-text query, or geo (lat/lng + radius_km).
  • get_restaurant — Get the public profile of a Tablrr restaurant (name, hours, cuisine, address, photos, public URL).
  • list_menu_items — List the public menu items of a Tablrr restaurant.
  • check_availability — Check whether a specific Tablrr restaurant has tables for a party on a given date (and optional time).
  • create_reservation — Book a table at a Tablrr restaurant on behalf of a diner.
  • cancel_reservation — Cancel a reservation using its confirmation token.
  • update_reservation — Change a reservation's date, time, or party size using its confirmation token.