Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A A A](https://glama.ai/mcp/servers/johnanleitner1-Coder/lastminutedeals-api/badges/score.svg)](https://glama.ai/mcp/servers/johnanleitner1-Coder/lastminutedeals-api) 🐍 ☁️ - Real-time last-minute tour and activity booking.

README.md

## This Platform Is For Sale β€” $8,000 (Open to Offers) 47 live supplier contracts across 18 countries, MCP server on Smithery + Glama, Stripe payments, US LLC, domain, and infrastructure included. Pre-revenue but production-ready. You're buying 6+ months of development time and 47 active supplier relationships. View full details and make an offer | Email: bookings@lastminutedealshq.com

---

Last Minute Deals HQ

![Smithery](https://smithery.ai/server/johnanleitner1/Last_Minute_Deals_HQ) ![lastminutedeals-api MCP server](https://glama.ai/mcp/servers/johnanleitner1-Coder/lastminutedeals-api)

MCP server with real-time last-minute tour and activity inventory. Live bookable slots across 40 suppliers in 48 countries and 100+ cities, sourced live from production booking systems via the OCTO open standard. Inventory refreshed every 4 hours.

Search available slots and create Stripe checkout sessions β€” customers pay on our page, suppliers are confirmed automatically.

Install

Claude Desktop

npx -y @smithery/cli install @johnanleitner1/Last_Minute_Deals_HQ --client claude

Claude Code

npx -y @smithery/cli install @johnanleitner1/Last_Minute_Deals_HQ --client claude-code

Cursor

npx -y @smithery/cli install @johnanleitner1/Last_Minute_Deals_HQ --client cursor

Windsurf

npx -y @smithery/cli install @johnanleitner1/Last_Minute_Deals_HQ --client windsurf

Other MCP Clients

npx -y @smithery/cli install @johnanleitner1/Last_Minute_Deals_HQ --client <client-name>

Or connect directly to the remote MCP endpoint:

https://api.lastminutedealshq.com/mcp

Tools

| Tool | Description | |---|---| | search_slots | Search available tours and activities. Filter by city, category, hours_ahead window, and max_price. Returns live inventory sorted by urgency (soonest first). | | book_slot | Book a slot for a customer. Approval mode (default) returns a Stripe checkout URL for the customer to pay. Autonomous mode charges a pre-funded wallet and returns a confirmation number directly. Supports quantity for group bookings. | | preview_slot | Get a shareable booking page URL for a slot. The user clicks the link, sees full details, enters their own name/email/phone, and pays via Stripe. Use this when a human is browsing with an AI assistant. | | get_booking_status | Check booking status by booking_id. Returns status, confirmation number, checkout URL (recoverable if lost), service details, and payment status. | | get_supplier_info | Returns the full supplier network β€” destinations, experience types, booking platform, and confirmation speed. Use before searching to understand what inventory is available. |

Example

"What tours are available in Rome this weekend under $50?"

search_slots(city="Rome", hours_ahead=72, max_price=50)
[
  {
    "service_name": "E-Bike Tour of Ancient Rome & Appian Way",
    "business_name": "Bicycle Roma",
    "start_time": "2026-04-19T09:00:00+00:00",
    "price": 42.00,
    "currency": "EUR",
    "location_city": "Rome",
    "hours_until_start": 26.5,
    "slot_id": "a1b2c3..."
  },
  {
    "service_name": "Castelli Romani Wine & Food E-Bike Tour",
    "business_name": "Bicycle Roma",
    "start_time": "2026-04-19T13:00:00+00:00",
    "price": 48.50,
    "currency": "EUR",
    "location_city": "Rome",
    "hours_until_start": 30.5,
    "slot_id": "d4e5f6..."
  }
]

"Book the e-bike tour for Jane Smith"

book_slot(
  slot_id="a1b2c3...",
  customer_name="Jane Smith",
  customer_email="jane@example.com",
  customer_phone="+15550001234"
)
{
  "booking_id": "bk_a1b2c3_x9y8z7",
  "status": "pending_payment",
  "checkout_url": "https://checkout.stripe.com/c/pay/...",
  "message": "Customer should complete payment at checkout_url"
}

"Did she pay yet?"

get_booking_status(booking_id="bk_a1b2c3_x9y8z7")
{
  "status": "booked",
  "confirmation_number": "BR-20260419-001",
  "service_name": "E-Bike Tour of Ancient Rome & Appian Way",
  "start_time": "2026-04-19T09:00:00+00:00",
  "payment_status": "captured"
}

Suppliers

40 active suppliers. Live inventory across 48 countries including France, UK, Germany, Italy, Spain, Netherlands, Switzerland, Iceland, Egypt, Japan, Portugal, Turkey, Brazil, Morocco, Tanzania, Finland, Montenegro, Romania, United States, United Kingdom, China, Mexico, Costa Rica, and more.

| Supplier | Destinations | Experiences | |---|---|---| | Arctic Adventures | Reykjavik, Husafell, Skaftafell, Iceland | Glacier hikes, ice caves, snowmobiling, aurora tours, whale watching, diving | | Bicycle Roma | Rome, Appia Antica, Castelli Romani | E-bike tours, food tours, guided city tours, bike rentals | | Boka Bliss | Kotor, Montenegro | Boat tours, sea caves, coastal experiences | | EgyExcursions | Cairo, Egypt | Pyramids, cultural tours, day trips | | Hillborn Experiences | Arusha, Serengeti, Zanzibar, Kilimanjaro | Private safaris, Kilimanjaro climbs, ultra-luxury wildlife tours | | Íshestar Riding Tours | Selfoss, Iceland | Horse riding, glacier rides, Viking tours | | Marvel Egypt Tours | Cairo, Luxor, Aswan | Pyramids, Nile cruises, temple tours | | O Turista Tours | Lisbon, Porto, Sintra, Fatima, Nazaré | Private tours, day trips, wine experiences | | Pure Morocco Experience | Marrakech, Sahara Desert | Desert tours, multi-day tours, cultural experiences | | Ramen Factory Kyoto | Kyoto, Japan | Cooking classes, ramen workshops | | REDRIB Experience | Helsinki, Finland | Speed boat tours, archipelago experiences | | TourTransfer Bucharest | Bucharest, Romania | City tours, Dracula castle, Peles castle | | Tours El Chiquiz | Puerto Vallarta, Mexico | Tequila tasting, hiking, nightlife tours, botanical gardens | | Trivanzo Holidays | Cairo, Luxor, Red Sea, Egypt | Nile cruises, cultural tours, desert tours | | TUTU VIEW Ltd | Shanghai, Xi'an, Beijing, Chengdu, Hangzhou | Multi-day tours, Silk Road, food tours, nature tours | | Vakare Travel Service | Antalya, Turkey | Boat tours, jeep safaris, cultural excursions | | All Washington View | Washington D.C. | City tours, sightseeing, monuments, panoramic views | | Zestro Bizlinks | Japan | Experiences | | Adi Tours - Nuba travel | Cairo, Egypt | Pyramids, cultural tours, Nile excursions, desert tours, day trips | | The Photo Experience | London, United Kingdom | Photography tours, photo walks, city photography experiences | | Sailing Windermere | Windermere, Lake District, United Kingdom | Sailing, lake cruises | | Perfect Day Tours | Luxor, Egypt | Temple tours, Valley of the Kings | | Nefertiti Tours | Cairo, Giza, Egypt | Pyramids, cultural tours | | Blue Dolphin Sailing | Guanacaste, Costa Rica | Sailing tours, sunset cruises, snorkeling | | EGYPT GATE | Cairo, Egypt | Tours and experiences | | Imperio tours | Rome, Italy | Fiat 500 tours, golf cart tours, food tours | | VIDABOA | Porto, Douro Valley, Portugal | Wine tours, private tours | | Gallo Tour | Rome, Italy | Golf cart tours | | Food Activity Japan | Osaka, Japan | Matcha making, food experiences | | European Voyages | Paris, London, Rome, Barcelona, Amsterdam, Berlin, Vienna, Prague, Budapest + 38 more | Walking tours, city tours, food tours, day trips, multi-day tours, river cruises, wine tours, cooking classes, transfers | | CruiserCar Palermo | Palermo, Sicily, Italy | Car tours, city tours, transfers | | Nile Navigators | Cairo, Luxor, Aswan, Egypt | Nile cruises, river tours, cultural experiences | | Fantastic Walks | United Kingdom | Walking tours | | Top Gear Tours | Cairo, Egypt | Tours and experiences | | Amazing Tours Agency | Brazil | Tours and experiences | | Anatolia Expedition | Istanbul, Turkey | Cultural tours, expeditions | | Turkey Tours Company | Istanbul, Turkey | Cultural tours, Cappadocia, Ephesus, day trips | | Eimverk Distillery | Reykjavik, Iceland | Distillery tours | | mondo guide srl | Rome, Italy | Guided tours, cultural experiences, day trips | | The Osaka&Tokyo | Osaka, Tokyo, Japan | Cultural experiences, city tours |

Categories

experiences Β· wellness Β· beauty Β· hospitality

API Key

Free. No credit card required. Needed for booking operations β€” search works without one.

curl -X POST https://api.lastminutedealshq.com/api/keys/register \
  -H "Content-Type: application/json" \
  -d '{"name": "MyAgent", "email": "agent@example.com"}'
{"api_key": "lmd_..."}

Pass the key when configuring the MCP server or as X-API-Key header for REST calls.

REST API

Base URL: https://api.lastminutedealshq.com

| Endpoint | Method | Description | |---|---|---| | /api/slots | GET | Search slots β€” city, category, hours_ahead, max_price | | /api/book | POST | Create Stripe checkout for a slot | | /api/book/direct | POST | Book with pre-funded wallet (autonomous agents) | | /bookings/{id} | GET | Check booking status | | /api/keys/register | POST | Get a free API key | | /api/wallets/create | POST | Create a pre-funded agent wallet | | /api/wallets/fund | POST | Get Stripe link to fund wallet | | /health | GET | System health check | | /metrics | GET | Live system metrics |

Booking Modes

Approval (default) β€” Returns a Stripe checkout URL. The customer visits the link, pays, and the booking is confirmed with the supplier automatically. Best for human-in-the-loop flows.

Autonomous β€” Requires a pre-funded wallet. The system debits the wallet instantly and confirms with the supplier. No redirect, no latency. Best for fully autonomous agents.

book_slot(
  slot_id="...",
  customer_name="Jane Smith",
  customer_email="jane@example.com",
  mode="autonomous",
  wallet_id="wlt_..."
)

How It Works

Every 4 hours:
  fetch_octo_slots.py   β†’  Pull availability from 40 suppliers via OCTO API
  aggregate_slots.py    β†’  Deduplicate, filter, sort by urgency
  compute_pricing.py    β†’  Dynamic commission-based pricing
  sync_to_supabase.py   β†’  Upsert to production database

MCP/REST requests:
  Agent calls search_slots  β†’  Supabase query  β†’  Live results
  Agent calls book_slot     β†’  Stripe checkout  β†’  OCTO booking  β†’  Supplier confirmed

Status

  • Slots live: 8,000+
  • Suppliers: 32
  • Countries: 47
  • Refresh interval: Every 4 hours
  • Uptime: Hosted on Railway (24/7)
  • Payments: Stripe (authorization-then-capture β€” customer is never charged for a failed booking)

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Search servers.