Lumbretravel MCP Server

A Model Context Protocol server for LumbreTravel

Local serverstdio

What is the Lumbretravel MCP server?

Lumbretravel MCP server exists for a simple reason — assistants are far more useful when they can act on Lumbretravel directly instead of describing what you should do. A Model Context Protocol server for LumbreTravel.

What you get

This MCP Server allows access to all the tools that LumbreTravel API provides.

Setting it up

The server ships on npm as @smithery/cli, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What the assistant can call

Once Lumbretravel is connected, these are the calls the assistant has available:

  • Tools — The Tools tool exposed by this server
  • Programs — The Programs tool exposed by this server
  • Activities — The Activities tool exposed by this server
  • Passengers — The Passengers tool exposed by this server
  • Agencies — The Agencies tool exposed by this server
  • Hotels — The Hotels tool exposed by this server
  • Services — The Services tool exposed by this server
  • Providers — The Providers tool exposed by this server
  • Leaders — The Leaders tool exposed by this server
  • Vehicles — The Vehicles tool exposed by this server
  • Includes — The Includes tool exposed by this server
  • Seasons — The Seasons tool exposed by this server

Configuration and credentials

You will need 6 environment variables: CLIENT_ID, CLIENT_SECRET, EMAIL, PASSWORD, YOUR_CLIENT_ID, YOUR_CLIENT_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

You'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.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Lumbretravel.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the lumbretravel mcp server does with a few real requests.

Choosing this one

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Lumbretravel's toolset — Tools, Programs, Activities and 11 more — is a fair guide to whether it matches your workflow. It is maintained by pekastel; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Lumbretravel's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
ToolsThe Tools tool exposed by this server.
ProgramsThe Programs tool exposed by this server.
ActivitiesThe Activities tool exposed by this server.
PassengersThe Passengers tool exposed by this server.
AgenciesThe Agencies tool exposed by this server.
HotelsThe Hotels tool exposed by this server.
ServicesThe Services tool exposed by this server.
ProvidersThe Providers tool exposed by this server.
LeadersThe Leaders tool exposed by this server.
VehiclesThe Vehicles tool exposed by this server.
IncludesThe Includes tool exposed by this server.
SeasonsThe Seasons tool exposed by this server.
PrerequisitesYou'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.
InstallationThe Installation tool exposed by this server.

How to install the Lumbretravel MCP server

{
  "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>"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

You'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.

VariableDescriptionRequired
CLIENT_IDConfiguration value read at startup.Optional
CLIENT_SECRETCredential the server authenticates with.Yes
EMAILConfiguration value read at startup.Optional
PASSWORDConfiguration value read at startup.Optional
YOUR_CLIENT_IDConfiguration value read at startup.Optional
YOUR_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Lumbretravel to Tools.
  • Use Lumbretravel to Programs.
  • Use Lumbretravel to Activities.

Frequently asked questions

It connects Lumbretravel to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Tools, Programs, Activities, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Lumbretravel directly.