MCP server
by lumile
LumbreTravel is the best trip planning app for managing travel programs, activities, and bookings, making itinerary plan
Connects to the Argentinian LumbreTravel API for managing travel programs, activities, bookings, passengers, and service coordination. Provides comprehensive tools for travel agencies and operators to handle their operations.
LumbreTravel is an official MCP server published by lumile that provides AI assistants with tools and capabilities via the Model Context Protocol. LumbreTravel is the best trip planning app for managing travel programs, activities, and bookings, making itinerary plan It is categorized under developer tools.
You can install LumbreTravel in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
NOASSERTION
LumbreTravel is released under the NOASSERTION license.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
LumbreTravel reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Useful MCP listing: LumbreTravel is the kind of server we cite when onboarding engineers to host + tool permissions.
LumbreTravel reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
LumbreTravel is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
LumbreTravel is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
LumbreTravel has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
I recommend LumbreTravel for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: LumbreTravel surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend LumbreTravel for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We wired LumbreTravel into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
showing 1-10 of 66
An MCP server that provides access to LumbreTravel API.
LumbreTravel is a platform for managing travel programs and activities and this is the MCP server for it. That allows you to use it on Claude Desktop or other MCP clients.
This MCP Server allows access to all the tools that LumbreTravel API provides.
create_program - Create a new programupdate_program - Update an existing programdelete_program - Delete a programreactivate_program - Reactivate a programadd_activities - Add activities to a programupdate_activities - Update activities of a programdelete_activities - Delete activities of a programget_passengers_by_fullname - Get passengers by fullnameget_passengers_by_email - Get passengers by emailcreate_bulk_passengers - Create bulk passengerscreate_passengers - Create passengersupdate_passengers - Update passengersdelete_passengers - Delete passengersreactivate_passenger - Reactivate a passengeradd_passengers_to_program - Add passengers to a programget_agencies - Get agenciesget_agency_by_name - Get an agency by namecreate_agency - Create an agencyupdate_agency - Update an agencydelete_agency - Delete an agencyreactivate_agency - Reactivate an agencycreate_hotel - Create a hotelupdate_hotel - Update a hoteldelete_hotel - Delete a hotelreactivate_hotel - Reactivate a hotelget_hotel_by_name - Get a hotel by nameget_hotels - Get hotelscreate_service - Create a serviceupdate_service - Update a servicedelete_service - Delete a servicereactivate_service - Reactivate a serviceget_services_by_name - Get a service by namecreate_service_language - Create a service languageupdate_service_language - Update a service languagedelete_service_language - Delete a service languagereactivate_service_language - Reactivate a service languageget_service_language_by_name - Get a service language by nameget_service_languages - Get service languagescreate_provider - Create a providerupdate_provider - Update a providerdelete_provider - Delete a providerreactivate_provider - Reactivate a providerget_provider_by_name - Get a provider by nameget_providers - Get providerscreate_leader - Create a leaderupdate_leader - Update a leaderdelete_leader - Delete a leaderreactivate_leader - Reactivate a leaderget_leaders - Get leaderscreate_vehicle - Create a vehicleupdate_vehicle - Update a vehicledelete_vehicle - Delete a vehiclereactivate_vehicle - Reactivate a vehicleget_vehicles - Get vehiclescreate_include - Create an includeupdate_include - Update an includedelete_include - Delete an includereactivate_include - Reactivate an includeget_includes - Get includesget_season_summary - Get a season summaryYou'll need a LumbreTravel Client ID and Client Secret to use this server. You can get one for free at https://developers.mercadolibre.com/, create an application and get the credentials.
Once you have the credentials, you can set the CLIENT_ID and CLIENT_SECRET environment variables.
There are two ways to use this server:
To install LumbreTravel MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @lumile/lumbretravel-mcp --client claude
Add this configuration to your Claude Desktop config file:
{
"mcpServers": {
"lumbretravel-mcp": {
"command": "npx",
"args": [
"-y",
"lumbretravel-mcp"
],
"env": {
"CLIENT_ID": "<YOUR_CLIENT_ID>",
"CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
"EMAIL": "<YOUR_EMAIL>",
"PASSWORD": "<YOUR_PASSWORD>"
}
}
}
}
npm install
npm run build
{
"mcpServers": {
"lumbretravel-mcp": {
"command": "node",
"args": [
"/path/to/lumbretravel-mcp/dist/index.js"
],
"env": {
"CLIENT_ID": "<YOUR_CLIENT_ID>",
"CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
"EMAIL": "<YOUR_EMAIL>",
"PASSWORD": "<YOUR_PASSWORD>"
}
}
}
}
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
npm run inspector
The Inspector will provide a URL to access debugging tools in your browser.
Contributions are extremely welcome! Please open a PR with new MCP servers or any other improvements to the codebase.
This project is to be used only with the LumbreTravel API.
See the LICENSE.md file for details.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.