Skip to main content
Glama
samwang0723

Restaurant Booking MCP Server

by samwang0723

Restaurant Booking MCP Server

An AI-powered Model Context Protocol (MCP) server for restaurant discovery and booking. This server integrates with Google Maps Places API to find restaurants based on location, cuisine preferences, mood, and event type, then provides intelligent recommendations and booking assistance.

๐ŸŽฏ Key Features

  • Smart Restaurant Search: Find restaurants within 20km radius with advanced filtering

  • Default Taiwan Location: Automatically searches around Taiwan (24.1501164, 120.6692299) when no coordinates specified

  • AI-Powered Recommendations: Get top 3 restaurant suggestions with detailed reasoning

  • Google Maps Integration: Real restaurant data including ratings, reviews, and photos

  • Event-Specific Matching: Optimized for dating, family gatherings, business meetings, and celebrations

  • Mood-Based Filtering: Find restaurants matching romantic, casual, upscale, fun, or quiet atmospheres

  • Booking Assistance: Get reservation instructions and mock booking capabilities

Related MCP server: Food402

Features

  • ๐Ÿ” Smart Restaurant Search: Find restaurants within 20km radius based on location, cuisine types, mood, and event type

  • ๐Ÿ“ Google Maps Integration: Real restaurant data with ratings, reviews, photos, and contact information

  • ๐Ÿ“… Booking Assistance: Check availability and get reservation instructions

  • ๐ŸŽฏ Event-Specific Matching: Optimized recommendations for dating, family gatherings, business meetings, etc.

  • ๐ŸŽญ Mood-Based Filtering: Find restaurants that match your desired atmosphere (romantic, casual, upscale, etc.)

Prerequisites

  • Node.js 18+

  • Google Maps API Key with Places API enabled

  • TypeScript knowledge for customization

Installation

  1. Clone or download this project

    git clone <repository-url>
    cd mcp-restaurant-booking
  2. Install dependencies

    npm install
  3. Set up environment variables

    cp .env.example .env

    Edit .env and add your Google Maps API key:

    GOOGLE_MAPS_API_KEY=your_actual_api_key_here
  4. Build the project

    npm run build

Getting Google Maps API Key

  1. Go to Google Cloud Console

  2. Create a new project or select existing one

  3. Enable the following APIs:

    • Places API

    • Maps JavaScript API

    • Geolocation API

    • Places API (New)

    • Geocoding API

  4. Create credentials (API Key)

  5. Restrict the API key to the enabled APIs for security

Usage

Running the Server

Development mode:

npm run dev

Production mode:

npm start

Running in Docker

To run the MCP Restaurant Booking server in Docker:

# Build the Docker image
docker build -t mcp/booking .

# Run the container on the same network as Redis
docker run --rm -i mcp/booking

Available Tools

The MCP server provides the following tools:

1. search_restaurants

Find restaurants based on location, cuisine, mood, and event type.

Parameters:

  • latitude (number, optional): Search latitude (default: 24.1501164 - Taiwan)

  • longitude (number, optional): Search longitude (default: 120.6692299 - Taiwan)

  • placeName (string, optional): Place name to search near (e.g., "New York", "Tokyo", "London"). Alternative to providing latitude/longitude coordinates.

  • cuisineTypes (string[]): Array of cuisine preferences

  • mood (string): Desired atmosphere

  • event (string): Type of occasion

  • radius (number, optional): Search radius in meters (default: 20000)

  • priceLevel (number, optional): Price preference (1-4)

Example with default Taiwan location:

{
  "cuisineTypes": ["Chinese", "Taiwanese"],
  "mood": "casual",
  "event": "family gathering",
  "priceLevel": 2
}

Example with explicit coordinates (Taipei):

{
  "latitude": 25.033,
  "longitude": 121.5654,
  "cuisineTypes": ["Italian", "Mediterranean"],
  "mood": "romantic",
  "event": "dating",
  "radius": 15000,
  "priceLevel": 3
}

Example with place name (New York):

{
  "placeName": "New York, NY",
  "cuisineTypes": ["Italian", "American"],
  "mood": "upscale",
  "event": "business meeting",
  "radius": 10000,
  "priceLevel": 3
}

Example with keyword search for specific food types:

{
  "keyword": "hotpot",
  "mood": "casual",
  "event": "family gathering",
  "radius": 10000
}

2. get_restaurant_details

Get detailed information about a specific restaurant.

Parameters:

  • placeId (string): Google Places ID of the restaurant

3. get_booking_instructions

Get instructions on how to make a reservation.

Parameters:

  • placeId (string): Google Places ID of the restaurant

4. check_availability

Check availability for a reservation (mock implementation).

Parameters:

  • placeId (string): Google Places ID

  • dateTime (string): Preferred date/time in ISO format

  • partySize (number): Number of people

5. make_reservation

Attempt to make a reservation (mock implementation).

Parameters:

  • placeId (string): Google Places ID

  • partySize (number): Number of people

  • preferredDateTime (string): ISO format date/time

  • contactName (string): Name for reservation

  • contactPhone (string): Phone number

  • contactEmail (string, optional): Email address

  • specialRequests (string, optional): Special requests

How It Works

1. Restaurant Discovery

  • Uses Google Places Nearby Search API to find restaurants within specified radius

  • Filters by cuisine types using keyword matching

  • Retrieves detailed information for each restaurant

2. AI Recommendation Engine

The recommendation system scores restaurants based on:

  • Rating & Reviews (40% weight): Higher ratings and more reviews = better score

  • Review Count (20% weight): More reviews indicate reliability

  • Cuisine Match (20% weight): How well restaurant cuisine matches preferences

  • Event Suitability (10% weight): Appropriateness for the specified event type

  • Mood Match (10% weight): Atmosphere alignment with desired mood

3. Event-Specific Scoring

Different events have different criteria:

  • Dating: Prefers mid-to-high-end, romantic cuisines, avoids fast food

  • Family Gathering: Prefers family-friendly, budget-to-mid-range options

  • Business Meeting: Prefers quiet, professional, upscale environments

  • Casual Dining: Flexible criteria, budget-friendly options

  • Celebration: Prefers high-end, special occasion venues

4. Mood Matching

Analyzes restaurant names, reviews, and characteristics for mood keywords:

  • Romantic: intimate, cozy, candlelit, wine

  • Casual: relaxed, friendly, laid-back

  • Upscale: elegant, sophisticated, fine dining

  • Fun: lively, energetic, vibrant

  • Quiet: peaceful, serene, calm

Development

Project Structure

src/
โ”œโ”€โ”€ types/           # TypeScript type definitions
โ”œโ”€โ”€ services/        # Core business logic
โ”‚   โ”œโ”€โ”€ googleMapsService.ts      # Google Maps API integration
โ”‚   โ”œโ”€โ”€ restaurantRecommendationService.ts  # AI recommendation engine
โ”‚   โ””โ”€โ”€ bookingService.ts         # Booking logic (mock)
โ””โ”€โ”€ index.ts         # MCP server implementation

Scripts

  • npm run build: Compile TypeScript

  • npm run dev: Run in development mode with hot reload

  • npm start: Run compiled version

  • npm run lint: Run ESLint

  • npm run lint:fix: Fix ESLint issues

Customization

Adding New Cuisine Types

Edit the cuisineMap in src/services/googleMapsService.ts:

const cuisineMap: { [key: string]: string } = {
  new_cuisine_type: "Display Name",
  // ... existing mappings
};

Modifying Recommendation Logic

Update scoring algorithms in src/services/restaurantRecommendationService.ts:

  • calculateRestaurantScore(): Overall scoring logic

  • calculateEventSuitability(): Event-specific criteria

  • calculateMoodMatch(): Mood matching logic

Adding New Event Types

  1. Update the event enum in src/types/index.ts

  2. Add event criteria in calculateEventSuitability() method

Limitations

  • Booking: Currently uses mock implementation. Real booking requires integration with restaurant-specific systems or third-party services like OpenTable

  • API Quotas: Google Places API has usage limits and costs

  • Real-time Data: Restaurant hours and availability may not be real-time

  • Geographic Coverage: Limited to areas covered by Google Places API

Contributing

  1. Fork the repository

  2. Create a feature branch

  3. Make your changes

  4. Add tests if applicable

  5. Submit a pull request

License

MIT License - see LICENSE file for details

Support

For issues and questions:

  1. Check the Google Maps API documentation

  2. Verify your API key has proper permissions

  3. Check API quotas and billing

  4. Review server logs for error details

Future Enhancements

  • Real booking system integration (OpenTable, Resy, etc.)

  • User preference learning

  • Multi-language support

  • Advanced filtering (dietary restrictions, accessibility)

  • Integration with calendar systems

  • Price comparison features

  • Social features (reviews, sharing)

Additional Browser Control

Using Browser MCP

Sample

  • Prompt: - While searching restaurants, please perform as professional personal assistant to evaluate the condition I provided, do not ask too many questions for me to choose, pick the best suitable selection for me, checking the reservation options and guide how to do the reservation. also list down the Signature Dishes from that restaurant and Approximately pricing per person. When booking info has booking url using external url, use the mcp browse tool to work and find reservation steps.

  • can you help me book a restaurant nearby hongkong ๅคชๅนณๆด‹ๅปฃๅ ด, I want to have a date with my wife within a fine-dining at evening 6pm. cost is not a concern and needs to be romatic

Available Tools

5 tools
check_availabilityC

Check availability for a restaurant reservation (mock implementation)

ParametersJSON Schema
NameRequiredDescriptionDefault
dateTimeYesPreferred date and time in ISO format (e.g., "2024-01-15T19:00:00")
localeNoLocale for availability check (e.g., "en", "zh-TW", "ja", "ko")en
partySizeYesNumber of people in the party
placeIdYesGoogle Places ID of the restaurant

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool checks availability but doesn't describe what 'availability' means (e.g., time slots, table types), whether it's a read-only operation, potential rate limits, or error conditions. The 'mock implementation' note suggests limited real-world functionality but lacks specifics on behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose. The 'mock implementation' note adds context without verbosity. However, it could be more structured by explicitly separating purpose from implementation notes.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 parameters, 100% schema coverage, and no output schema, the description is minimally adequate. It states the purpose but lacks details on return values (e.g., what availability data looks like) and behavioral context, which is needed given the absence of annotations. It meets basic requirements but leaves gaps in understanding tool behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents all parameters. The description adds no additional meaning beyond what's in the schema (e.g., it doesn't explain how parameters interact or typical values). Baseline 3 is appropriate as the schema handles parameter documentation adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose as 'Check availability for a restaurant reservation' with the specific verb 'check' and resource 'availability'. It distinguishes from siblings like 'make_reservation' (which books) and 'search_restaurants' (which finds restaurants), though it doesn't explicitly differentiate from 'get_restaurant_details' which might provide related info.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'make_reservation' or 'search_restaurants'. It mentions 'mock implementation', which hints at testing contexts, but offers no explicit when/when-not instructions or prerequisites for effective tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_booking_instructionsC

Get instructions on how to make a reservation at a specific restaurant

ParametersJSON Schema
NameRequiredDescriptionDefault
localeNoLocale for booking instructions (e.g., "en", "zh-TW", "ja", "ko")en
placeIdYesGoogle Places ID of the restaurant

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves instructions but doesn't cover critical aspects like whether it's a read-only operation, potential rate limits, authentication needs, or what the return format looks like (e.g., text, structured data). This leaves significant gaps for an agent to use it effectively.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded with the core action ('Get instructions'), making it easy to parse and understand quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete for effective tool use. It doesn't address behavioral traits (e.g., safety, performance) or output details, which are crucial for an agent to handle this tool correctly in a broader context with sibling tools like 'make_reservation'.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, clearly documenting both parameters ('locale' and 'placeId') with their purposes and types. The description doesn't add any semantic details beyond what the schema provides, such as explaining how 'placeId' relates to restaurant selection or the impact of 'locale' on instruction content. Baseline 3 is appropriate since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('instructions on how to make a reservation at a specific restaurant'), making it immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'check_availability' or 'make_reservation', which might involve related reservation processes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as 'check_availability' or 'make_reservation'. It lacks context about prerequisites (e.g., needing a restaurant ID) or exclusions, leaving the agent to infer usage based on the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_restaurant_detailsB

Get detailed information about a specific restaurant including reviews, photos, and opening hours

ParametersJSON Schema
NameRequiredDescriptionDefault
localeNoLocale for restaurant details (e.g., "en" for English, "zh-TW" for Traditional Chinese, "ja" for Japanese, "ko" for Korean). Affects restaurant names, reviews, and other text content.en
placeIdYesGoogle Places ID of the restaurant

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves information, implying a read-only operation, but lacks details on permissions, rate limits, error handling, or response format. This is a significant gap for a tool with no annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the purpose and lists key details without unnecessary words. Every element (verb, resource, information types) earns its place, making it appropriately sized and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is minimally adequate. It covers the purpose and data types but lacks behavioral context, usage guidelines, and output details, leaving gaps that reduce completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents both parameters (placeId and locale). The description does not add any parameter-specific details beyond what the schema provides, such as examples or usage context, resulting in a baseline score of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get detailed information') and resource ('about a specific restaurant'), specifying what information is retrieved (reviews, photos, opening hours). However, it does not explicitly differentiate from sibling tools like 'search_restaurants' or 'check_availability', which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites (e.g., needing a placeId from search results), exclusions, or comparisons to siblings like 'search_restaurants' for finding restaurants or 'check_availability' for availability details.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

make_reservationC

Attempt to make a restaurant reservation (mock implementation)

ParametersJSON Schema
NameRequiredDescriptionDefault
contactEmailNoEmail address (optional)
contactNameYesName for the reservation
contactPhoneYesPhone number for the reservation
localeNoLocale for reservation process (e.g., "en", "zh-TW", "ja", "ko")en
partySizeYesNumber of people in the party
placeIdYesGoogle Places ID of the restaurant
preferredDateTimeYesPreferred date and time in ISO format
specialRequestsNoAny special requests or dietary restrictions

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a 'mock implementation', which hints at limited functionality, but doesn't describe what that means operationally (e.g., whether it actually creates reservations, returns simulated results, or has specific limitations). For a mutation tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that communicates the core purpose without any wasted words. The parenthetical '(mock implementation)' is appropriately placed and adds necessary context without disrupting flow.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is insufficiently complete. It doesn't explain what happens after the 'attempt' (success/failure outcomes, return format, error conditions), nor does it address behavioral aspects like authentication needs or rate limits that would be crucial for an agent to use it effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 8 parameters thoroughly. The description adds no additional parameter information beyond what's in the schema, maintaining the baseline score of 3 for adequate but not enhanced parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('make') and resource ('restaurant reservation'), and the parenthetical '(mock implementation)' adds useful context about its nature. However, it doesn't explicitly distinguish this tool from its siblings like 'check_availability' or 'get_booking_instructions', which would be needed for a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'check_availability' or 'get_booking_instructions'. It doesn't mention prerequisites (e.g., whether availability should be checked first) or appropriate contexts, leaving the agent to guess based on tool names alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_restaurantsB

Search for restaurants based on location, cuisine types, mood, and event type. Returns top 3 AI-recommended restaurants within 3km radius. You can also search for specific food types using keywords.

ParametersJSON Schema
NameRequiredDescriptionDefault
cuisineTypesNoArray of preferred cuisine types (e.g., ["Italian", "Japanese", "Mexican"])
eventYesType of event or occasion
keywordNoSearch for specific food types or dishes (e.g., "hotpot", "sushi", "pizza", "ramen", "dim sum", "barbecue")
latitudeNoLatitude of the search location (default: 24.1501164 - Taiwan)
localeNoLocale for search results and Google API responses (e.g., "en" for English, "zh-TW" for Traditional Chinese, "ja" for Japanese, "ko" for Korean, "th" for Thai). Affects restaurant names, reviews, and other text content.en
longitudeNoLongitude of the search location (default: 120.6692299 - Taiwan)
moodYesDesired mood/atmosphere (e.g., "romantic", "casual", "upscale", "fun", "quiet")
placeNameNoPlace name to search near (e.g., "New York", "Tokyo", "London"). Alternative to providing latitude/longitude coordinates.
priceLevelNoPrice level preference (1=inexpensive, 4=very expensive)
radiusNoSearch radius in meters (default: 3000 = 3km)

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It discloses key behavioral traits: returns top 3 AI-recommended restaurants, operates within 3km radius (implied default), and uses Google API for locale-specific results. However, it doesn't mention rate limits, authentication needs, error conditions, or whether this is a read-only operation (though 'search' implies it).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences that efficiently cover purpose and additional capability (keyword search). The first sentence front-loads core functionality with key parameters and output details. No wasted words, though it could be slightly more structured by separating constraints from capabilities.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 10-parameter search tool with no annotations and no output schema, the description provides adequate but incomplete context. It covers what the tool does and key constraints (top 3, 3km radius), but lacks details about return format, error handling, or how AI recommendations work. The schema compensates for parameter documentation, but behavioral aspects remain partially uncovered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 10 parameters thoroughly. The description adds marginal value by mentioning location, cuisine types, mood, event type, and keywords as search criteria, but doesn't provide additional syntax or format details beyond what's in the schema descriptions. Baseline 3 is appropriate when schema does heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches for restaurants based on multiple criteria (location, cuisine types, mood, event type, keywords) and returns top 3 AI-recommended results within a 3km radius. It specifies the verb 'search' and resource 'restaurants' with scope details, though it doesn't explicitly differentiate from sibling tools like 'get_restaurant_details'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for finding restaurants with various filters, but doesn't explicitly state when to use this tool versus alternatives like 'get_restaurant_details' or 'check_availability'. It mentions 'you can also search for specific food types using keywords', which provides some context but lacks clear exclusions or comparisons to sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 5 tool updatesv1.0.0
    • First observedcheck_availability
    • First observedget_booking_instructions
    • First observedget_restaurant_details
    • First observedmake_reservation
    • First observedsearch_restaurants

TDQS

A3.5/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: check_availability verifies reservation slots, get_booking_instructions provides procedural guidance, get_restaurant_details offers venue information, make_reservation books a table, and search_restaurants finds restaurants. There is no overlap or ambiguity between these functions.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case: check_availability, get_booking_instructions, get_restaurant_details, make_reservation, and search_restaurants. The naming is predictable and uniform throughout.

Tool Count5/5

With 5 tools, the server is well-scoped for restaurant booking, covering key operations like search, details, availability, reservation, and instructions. Each tool earns its place without being too sparse or bloated.

Completeness4/5

The tool set covers core workflows: search, get details, check availability, make reservation, and get instructions. A minor gap exists in update/cancel reservation operations, but agents can work around this for basic booking tasks.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    A server that enables AI models to fetch and display Google Street View imagery, allowing users to create virtual tours by viewing streets and landmarks from anywhere.
    4
    7
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that enables AI assistants to order food from TGO Yemek by browsing restaurants, managing carts, and completing checkouts. It allows users to handle address selection and order tracking directly through natural language interactions.
    29
    13
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    An MCP server for restaurant discovery and booking across Resy and OpenTable via natural language. It integrates Google Places data with dietary preferences, visit history, and weather awareness to provide personalized dining recommendations and group reservation management.
    23
    -
  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    An AI-native restaurant discovery service that enables searching and receiving natural language recommendations for over 2,200 restaurants across 15+ US cities. It provides tools for accessing detailed restaurant info, curated lists, and cuisine-specific searches through the Model Context Protocol.
    -