Restaurant Booking MCP Server
The Restaurant Booking MCP Server is an AI-powered tool that helps users discover, recommend, and manage restaurant bookings by integrating with Google Maps. Key features include:
Search & Filtering: Find restaurants based on location, cuisine, price level, radius (up to 20km), keywords, desired atmosphere (romantic, casual, upscale), and event types (dating, family gatherings, business meetings)
AI Recommendations: Receive top 3 restaurant suggestions with detailed reasoning based on ratings, reviews, cuisine match, and suitability for specific occasions
Restaurant Details: Access comprehensive information including reviews, photos, and opening hours
Booking Management: Get reservation instructions, check availability, and simulate making reservations with party size and special requests
Additional Features: Multi-language support for searches and results, default Taiwan location if unspecified
Supports containerized deployment of the MCP server using Docker, with instructions for building and running the container.
Enables configuration of environment variables including the Google Maps API key, with support for development and production environments.
Provides code quality checking through ESLint integration, with dedicated scripts for linting and automatic fixing of issues.
Integrates with Google Maps Places API to find restaurants based on location, cuisine preferences, and other criteria within a 20km radius, providing access to real restaurant data including ratings, reviews, and photos.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Restaurant Booking MCP Serverfind romantic Italian restaurants in New York for a date night"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Clone or download this project
git clone <repository-url> cd mcp-restaurant-bookingInstall dependencies
npm installSet up environment variables
cp .env.example .envEdit
.envand add your Google Maps API key:GOOGLE_MAPS_API_KEY=your_actual_api_key_hereBuild the project
npm run build
Getting Google Maps API Key
Go to Google Cloud Console
Create a new project or select existing one
Enable the following APIs:
Places API
Maps JavaScript API
Geolocation API
Places API (New)
Geocoding API
Create credentials (API Key)
Restrict the API key to the enabled APIs for security
Usage
Running the Server
Development mode:
npm run devProduction mode:
npm startRunning 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/bookingAvailable 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 preferencesmood(string): Desired atmosphereevent(string): Type of occasionradius(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 IDdateTime(string): Preferred date/time in ISO formatpartySize(number): Number of people
5. make_reservation
Attempt to make a reservation (mock implementation).
Parameters:
placeId(string): Google Places IDpartySize(number): Number of peoplepreferredDateTime(string): ISO format date/timecontactName(string): Name for reservationcontactPhone(string): Phone numbercontactEmail(string, optional): Email addressspecialRequests(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 implementationScripts
npm run build: Compile TypeScriptnpm run dev: Run in development mode with hot reloadnpm start: Run compiled versionnpm run lint: Run ESLintnpm 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 logiccalculateEventSuitability(): Event-specific criteriacalculateMoodMatch(): Mood matching logic
Adding New Event Types
Update the
eventenum insrc/types/index.tsAdd 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
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
License
MIT License - see LICENSE file for details
Support
For issues and questions:
Check the Google Maps API documentation
Verify your API key has proper permissions
Check API quotas and billing
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 toolscheck_availabilityC
Check availability for a restaurant reservation (mock implementation)
| Name | Required | Description | Default |
|---|---|---|---|
| dateTime | Yes | Preferred date and time in ISO format (e.g., "2024-01-15T19:00:00") | |
| locale | No | Locale for availability check (e.g., "en", "zh-TW", "ja", "ko") | en |
| partySize | Yes | Number of people in the party | |
| placeId | Yes | Google Places ID of the restaurant |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | Locale for booking instructions (e.g., "en", "zh-TW", "ja", "ko") | en |
| placeId | Yes | Google Places ID of the restaurant |
TDQS
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| locale | No | Locale 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 |
| placeId | Yes | Google Places ID of the restaurant |
TDQS
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.
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.
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.
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.
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.
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)
| Name | Required | Description | Default |
|---|---|---|---|
| contactEmail | No | Email address (optional) | |
| contactName | Yes | Name for the reservation | |
| contactPhone | Yes | Phone number for the reservation | |
| locale | No | Locale for reservation process (e.g., "en", "zh-TW", "ja", "ko") | en |
| partySize | Yes | Number of people in the party | |
| placeId | Yes | Google Places ID of the restaurant | |
| preferredDateTime | Yes | Preferred date and time in ISO format | |
| specialRequests | No | Any special requests or dietary restrictions |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| cuisineTypes | No | Array of preferred cuisine types (e.g., ["Italian", "Japanese", "Mexican"]) | |
| event | Yes | Type of event or occasion | |
| keyword | No | Search for specific food types or dishes (e.g., "hotpot", "sushi", "pizza", "ramen", "dim sum", "barbecue") | |
| latitude | No | Latitude of the search location (default: 24.1501164 - Taiwan) | |
| locale | No | Locale 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 |
| longitude | No | Longitude of the search location (default: 120.6692299 - Taiwan) | |
| mood | Yes | Desired mood/atmosphere (e.g., "romantic", "casual", "upscale", "fun", "quiet") | |
| placeName | No | Place name to search near (e.g., "New York", "Tokyo", "London"). Alternative to providing latitude/longitude coordinates. | |
| priceLevel | No | Price level preference (1=inexpensive, 4=very expensive) | |
| radius | No | Search radius in meters (default: 3000 = 3km) |
TDQS
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.
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.
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.
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.
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.
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.
5 tool updates
v1.0.0- First observed
check_availability - First observed
get_booking_instructions - First observed
get_restaurant_details - First observed
make_reservation - First observed
search_restaurants
TDQS
Scored across 5 tools
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.
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.
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.
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
Related MCP Connectors
AI-native restaurant discovery: verified/menu-indexed/discovered tiers + signed allergy-safety data.
Run your restaurant from an AI client: orders, menu, reports, refunds, payouts and staff.
The Google Maps MCP server is a fully-managed server provided by the Maps Grounding Lite API that connects AI applications to Google Maps Platform services. It provides three main tools for building LLM applications: searching for places, looking up weather information, and computing routes with details like distance and travel time. The server acts as a proxy that translates Google Maps data into a format that AI applications can understand, enabling agents to accurately answer real-world location and travel queries.
Discover and book businesses via AI agents.
Related MCP Servers
- AlicenseAqualityDmaintenanceA 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.47MIT
- AlicenseNot gradedqualityDmaintenanceAn 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.2913MIT
- FlicenseAqualityDmaintenanceAn 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-
- FlicenseNot gradedqualityNot gradedmaintenanceAn 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.-