Back to MCP Servers

lastminute.com MCP Server

Official provider-hosted MCP server from lastminute.com that gives AI assistants real-time access to flights, hotels, and dynamic flight + hotel packages.

Travel by lastminute.com None active
Overview

The lastminute.com MCP Server is the European online travel agency's official Model Context Protocol endpoint, giving large language models structured, API-level access to lastminute.com's live travel inventory. It launched in January 2026 as the first step of a multi-year AI infrastructure roadmap, with additional servers for hotels and dynamic packaging planned to follow. The server is provider-hosted at https://mcp.lastminute.com/mcp and is also distributed via the Anthropic Connectors marketplace inside claude.com.

The server supports three core search experiences: flight-only search across global airlines with real-time pricing, hotel-only stays with amenity and star-rating filters, and combined flight plus hotel packages returned as bundled offers. Searches accept rich filters including IATA airport codes, time windows, price ranges in cents, stop counts, airline includes/excludes, duration caps, and numeric amenity IDs for hotel facilities such as WiFi, parking, pool, spa, and restaurant. Final booking happens on the lastminute.com site; the server returns deep links and does not store personal or payment information.

It is notable as one of the first MCP servers shipped by a major OTA, positioning lastminute.com inside agentic travel workflows for the Claude ecosystem and any other MCP-compatible client. Supported languages include English, Italian, Spanish, French, German, Dutch, Polish, Swedish, Danish, Norwegian, and Finnish.

Tools

Tool Description
Flight search Search flights across global airlines with real-time pricing. Supports default price-sorted results, server-side filtering, and a smart ranking mode for recommendations.
Hotel search Search hotel-only stays with amenity, star rating, and accommodation-type filters.
Package search Search dynamic flight plus hotel packages returned as bundled offers in a single request.
Setup Guide

The lastminute.com MCP Server is hosted by lastminute.com. You do not need to clone or run anything locally. There are two ways to connect.

Option 1: Anthropic Connectors (recommended)

  • Open claude.com/connectors
  • Search for "lastminute.com" or "Flight & Hotels"
  • Click Install to add the connector to your Claude account

Option 2: Claude Desktop manual config

Open Claude Desktop, go to Settings > Developers, click Update Configuration, and add the following to claude_desktop_config.json:

{
  "mcpServers": {
    "LASTMINUTE": {
      "command": "npx",
      "args": ["mcp-remote", "https://mcp.lastminute.com/mcp"],
      "enabled": true
    }
  }
}

This uses the mcp-remote npm shim to bridge Claude Desktop's stdio transport to the hosted remote MCP server.

Prerequisites

  • Node.js installed (for the npx mcp-remote bridge in Option 2)
  • An MCP-compatible client such as Claude Desktop or Claude on the web

Notes

  • No API key or account is required to query inventory.
  • The server returns booking deep links; final purchase happens on lastminute.com.
  • No personal or payment data is stored by the MCP server.
  • Technical support: mcp@lastminute.com.
Use Cases
  • Build a Claude-driven flight finder that returns the cheapest direct options between two airports for flexible dates, filtered by airline and max duration.
  • Plan a full trip in one prompt by asking for a flight plus hotel package within a target budget, then have Claude hand off a deep link for final booking.
  • Search hotel inventory by amenity (pool, spa, fitness center) and star rating in a destination city for a given date range.
  • Compare time-window options, for example only flights departing after 18:00 with at most one stop, inside an agentic travel assistant.
  • Power a multilingual travel concierge in any of the 11 supported languages (English, Italian, Spanish, French, German, Dutch, Polish, Swedish, Danish, Norwegian, Finnish).
Example Prompts
  • "Find round-trip flights from Milan to New York departing 12 July and returning 22 July, max 1 stop, under 600 euros."
  • "Search for 4 or 5 star hotels in Barcelona for 3 nights in August with a pool and free WiFi."
  • "Build me a Flight + Hotel package from London to Rome for two adults, 15 to 19 September, under 1500 euros total."
  • "Show me only direct morning flights from Paris CDG to Madrid next Friday, sorted by price."
  • "Compare lastminute.com packages to Crete and Mallorca for a family of four in July."
Pros
  • Official, provider-hosted server from lastminute.com with direct access to live inventory and real-time pricing.
  • Covers flights, hotels, and dynamic flight plus hotel packages in a single endpoint.
  • Available both via the Anthropic Connectors marketplace and as a self-configured remote server, no API key required.
  • Rich filter set including IATA airports, time windows, price ranges, stop counts, airline filters, and hotel amenity IDs.
Limitations
  • Read/search only: final booking must be completed on the lastminute.com website, the server does not execute transactions.
  • Inventory and pricing reflect lastminute.com's catalog and supported markets, which may differ from other OTAs or direct airline fares.
  • Public technical documentation is high level; exact tool schemas and parameter names are not fully published, with most interaction expected through natural language.
Alternatives