INDIVIDUAL MCP TOOL
get_restaurant
Get the public profile of a Tablrr restaurant (name, hours, cuisine, address, photos, public URL).
LIVE ENDPOINT
https://tablrr.com/mcp/diner
Connect to this endpoint to inspect the live schema for get_restaurant and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent server
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).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.get_reservation— Look up a reservation using the confirmation token returned when it was booked (also in the confirmation email's manage link).cancel_reservation— Cancel a reservation using its confirmation token.update_reservation— Change a reservation's date, time, or party size using its confirmation token.