mcp-hilton
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HILTON_CONFIG_DIR | No | Override the default ~/.strider/hilton/ config directory (Note: README mentions this is not yet implemented and may require editing src/auth.ts to customize) |
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 |
|---|---|
| hilton_statusA | Check Hilton Honors login status and session info. Use this to verify authentication before performing other actions. |
| hilton_loginA | Initiate Hilton Honors login flow. Returns a URL and instructions for the user to complete login manually. After logging in, use hilton_status to verify. |
| hilton_logoutA | Clear saved Hilton session and cookies. Use this to log out or reset authentication state. |
| search_hotelsB | Search for Hilton hotels by location and dates. Returns hotel names, brands, ratings, prices, and points rates. |
| get_hotel_detailsB | Get detailed information about a specific Hilton hotel, including amenities, description, photos, check-in/check-out times, and contact info. |
| get_roomsA | View available room types and rates for a specific hotel and date range. Returns room names, bed types, prices, points rates, and cancellation policies. |
| select_roomB | Select a specific room type to proceed to booking. Initiates the booking flow for the chosen room. |
| add_extrasC | View and add extras to a booking such as parking, breakfast packages, airport transfers, spa access, and other amenities. |
| checkoutA | Complete a booking reservation. IMPORTANT: Set confirm=true only when you have explicit user confirmation. Without confirm=true, returns current booking state instead of placing the booking. |
| get_reservationB | Look up a specific Hilton reservation by confirmation number. Requires being logged in. |
| modify_reservationA | Change an existing Hilton reservation (dates, room type, etc.). IMPORTANT: Set confirm=true only when you have explicit user confirmation. |
| cancel_reservationA | Cancel an existing Hilton reservation. IMPORTANT: Set confirm=true only when you have explicit user confirmation. This action cannot be undone. |
| digital_keyC | Get digital room key information and activation instructions for a Hilton reservation. Digital Key allows your phone to unlock your hotel room. |
| get_honors_statusA | Check Hilton Honors membership status, points balance, tier level, lifetime points, and progress toward next tier. Requires being logged in. |
| redeem_pointsB | Search for hotels available for Hilton Honors points redemption. Shows points required per night and cash value. Requires being logged in with sufficient points. |
| get_stay_historyA | View past Hilton stays, including hotel names, dates, points earned, and total nights. 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 has a clearly distinct purpose targeting specific actions in the Hilton booking and account management workflow, such as search_hotels for finding hotels, get_rooms for viewing room options, and cancel_reservation for cancellations, with no overlapping or ambiguous functions. The descriptions explicitly differentiate tools like checkout (for completing bookings) and modify_reservation (for changes), ensuring agents can easily select the correct tool.
Tool names follow a consistent verb_noun pattern throughout, such as search_hotels, get_reservation, and cancel_reservation, with no deviations in style or convention. All tools use snake_case and clear action-oriented verbs, making the naming predictable and easy to understand for agents.
With 16 tools, the set is well-scoped for the Hilton booking and account management domain, covering essential operations from search and booking to account management and post-booking actions. Each tool serves a specific, necessary function without redundancy, fitting the typical range for such a server.
The tool set provides complete coverage of the Hilton domain, including search, booking, modification, cancellation, account management (login, status, honors), and post-booking features like digital keys and extras. There are no obvious gaps; agents can handle the full lifecycle from initial search to checkout and beyond without dead ends.