@striderlabs/mcp-marriott
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MARRIOTT_EMAIL | No | Marriott Bonvoy account email | |
| MARRIOTT_PASSWORD | No | Marriott Bonvoy account password |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| statusA | Check Marriott login status and Bonvoy session info. Use this to verify authentication before performing other actions. |
| loginA | Log in to Marriott Bonvoy. Reads MARRIOTT_EMAIL and MARRIOTT_PASSWORD from environment variables, or returns a URL for manual login. |
| logoutA | Clear saved Marriott session and cookies. Use this to log out or reset authentication state. |
| search_hotelsA | Search for Marriott hotels by destination and dates. Returns hotel names, brands, ratings, locations, and nightly rates. |
| get_hotel_detailsA | Get detailed information about a specific Marriott hotel — description, amenities, policies, check-in/out times, parking, and pet policy. |
| get_room_optionsA | View available room types and rates for a specific hotel and date range. Returns room names, bed types, prices, cancellation policies, and Bonvoy point rates. |
| select_roomA | Choose a room type to book. Call this after get_room_options to select a room before checkout. |
| add_extrasA | Add optional extras to your booking — parking, breakfast, late checkout, early check-in, airport transfer, or spa credit. |
| checkoutA | Complete a Marriott hotel booking. IMPORTANT: Set confirm=true only after getting explicit user confirmation. Without confirm=true, returns a booking preview instead of charging. |
| get_reservationA | Retrieve existing Marriott reservation details. Requires being logged in. Returns upcoming reservations or a specific booking by confirmation number. |
| modify_reservationA | Change dates or room type for an existing reservation. IMPORTANT: Set confirm=true only after getting explicit user confirmation. |
| cancel_reservationA | Cancel an existing Marriott reservation. IMPORTANT: Set confirm=true only after getting explicit user confirmation. Cancellation fees may apply. |
| check_inA | Complete mobile check-in for an upcoming Marriott reservation. May return room number and mobile key availability. |
| get_bonvoy_statusA | Check Marriott Bonvoy loyalty program status — points balance, membership tier, nights this year, progress to next tier, and recent activity. Requires being logged in. |
| redeem_pointsA | Book a hotel stay using Marriott Bonvoy points. Shows available award rates. IMPORTANT: Set confirm=true only after getting explicit user confirmation. |
| get_stay_historyA | View past Marriott stays including dates, hotels, points earned, and costs. Requires being logged in. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 16 tools
Each tool targets a distinct action (login, search, select, checkout, etc.) with clear boundaries. No two tools overlap in purpose.
All tool names follow a consistent verb_noun pattern using snake_case (e.g., search_hotels, get_hotel_details, cancel_reservation). Single-word tools like status and login fit the verb style.
16 tools cover a comprehensive hotel booking workflow from login to check-in and loyalty management. Slightly above the typical 3-15 range, but still well-scoped and each tool earns its place.
Covers authentication, search, details, room selection, extras, booking, modifications, cancellations, check-in, and loyalty. Minor gaps like viewing account profile, but core booking lifecycle is complete.