- Home
- MCP servers
- Meitre
Meitre
- javascript
0
GitHub Stars
javascript
Language
3 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
This MCP server connects AI assistants to Meitre, a restaurant reservation platform, enabling you to check availability, search reservations, and manage bookings through natural language interactions.
How to use
You can integrate this MCP server into your client configuration to enable Meitre as a data source and action provider. Once connected, you can explore available restaurants, view options such as dining areas and service types, check dates and times for reservations, search existing reservations by phone, and perform bookings, reschedules, or cancellations directly through natural language prompts.
How to install
Prerequisites: You need a compatible MCP client (for example, Claude Desktop or Cursor) and internet access to reach the MCP endpoint.
- Add the MCP server to your client configuration. Use the following JSON snippet as the server entry in your client settings.
{
"mcpServers": {
"meitre": {
"url": "https://meitre.mcp.openbsp.dev/mcp",
"headers": {
"username": "your-meitre-email",
"password": "your-meitre-password"
}
}
}
}
Additional setup notes
If your Meitre account includes a single restaurant, it will be detected automatically by the MCP client. For multi-restaurant accounts, you should add a restaurant header to specify the target restaurant. To determine the correct restaurant identifier, use the list_restaurants tool within your client. The tool will return the accessible restaurant identifiers for your account.
Notes on usage patterns
- Use the list_restaurants tool to enumerate accessible restaurants when needed.
- Fetch options to retrieve areas, service types, and menus prior to booking.
- Check dates for the next 15 days to identify potential reservation windows.
- Retrieve available timeslots for a chosen date before proposing a booking.
- You can search for existing reservations by phone to review or modify them.
- Book, reschedule, or cancel reservations through straightforward commands in natural language.
Security considerations
Protect your Meitre account credentials. Do not share your username or password in insecure channels. If you are using a multi-restaurant setup, ensure the restaurant identifier is correctly configured to avoid actions on the wrong table.
Development and running locally
If you are developing or testing the MCP server locally, follow the standard Node-based development workflow used by MCP integrations. Install dependencies, run type checks, and deploy according to your environment. Ensure you run any local dev server in a secure environment.
Available tools
list_restaurants
List restaurants accessible to your account
fetch_options
Get areas, service types, and menus
fetch_dates
Available dates for the next 15 days
fetch_timeslots
Available times for a specific date
search_reservations
Find reservations by phone number
book_reservation
Book a new reservation
reschedule_reservation
Reschedule an existing reservation
cancel_reservation
Cancel a reservation