The Hill Kinabalu
Server Details
Official rooms, live availability, booking links, and wedding info for The Hill Kinabalu.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.8/5 across 4 of 4 tools scored.
Each tool has a clearly distinct purpose: listing rooms, checking availability, generating booking links, and retrieving wedding information. No overlap exists.
All tool names follow a consistent verb_noun pattern in snake_case: list_rooms, check_room_availability, generate_booking_link, get_wedding_information.
Four tools are well-scoped for a hotel booking server, covering room listing, availability, booking link generation, and wedding info without being too many or too few.
The tool set covers the key operations: view rooms, check availability, book, and get wedding info. A minor gap is the lack of cancellation or modification tools, but the core workflow is complete.
Available Tools
4 toolscheck_room_availabilityCheck room availabilityARead-onlyIdempotentInspect
Check The Hill Kinabalu room availability for an exact stay and party size. Before calling, collect check_in_date, check_out_date, and total_pax from the user; never invent missing values. Dates must use YYYY-MM-DD, check-out must be after check-in, and the maximum stay is 30 nights. Returns suitable room-type options and the number of rooms required. This is a read-only availability snapshot and does not create or hold a booking.
| Name | Required | Description | Default |
|---|---|---|---|
| total_pax | Yes | Total number of staying guests, including adults and children. | |
| check_in_date | Yes | Guest check-in date in YYYY-MM-DD format. | |
| check_out_date | Yes | Guest check-out date in YYYY-MM-DD format. |
Output Schema
| Name | Required | Description |
|---|---|---|
| meta | Yes | |
| query | Yes | |
| property | Yes | |
| available | Yes | |
| apiVersion | Yes | |
| availableRoomOptions | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, but the description adds meaningful context by stating 'This is a read-only availability snapshot and does not create or hold a booking', reinforcing no-side-effect behavior and adding the max stay limit of 30 nights. These are behavioral details not present in annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences long, front-loading the purpose, then usage and constraints, then behavior. Every sentence delivers unique information with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with a high-coverage schema, annotations, and an output schema, the description is complete: it covers what the tool does, required inputs, constraints, and the return type. The output schema handles return details, so the description need not elaborate further.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers all three parameters with descriptions and validation, but the description adds crucial relational constraints: check-out must be after check-in, maximum stay is 30 nights, and the values must come from the user. This goes beyond the schema's per-parameter format and provides essential guidance for correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'check' and resource 'room availability' for 'The Hill Kinabalu', scoped to an exact stay and party size. This clearly differentiates it from sibling tools like generate_booking_link (creates a link), list_rooms (lists rooms without availability), and get_wedding_information.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly instructs to collect check_in_date, check_out_date, and total_pax from the user and never invent missing values, establishing clear prerequisites. It also gives date format and order constraints. However, it does not explicitly name alternative tools or when-not-to-use conditions, so it stops short of full guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_booking_linkGenerate booking linkARead-onlyInspect
Generate a verified The Hill Kinabalu checkout link only after the guest has supplied room_slug, check_in_date, check_out_date, and total_pax. Use a room_slug returned by check_room_availability. Never invent or calculate nights, room quantity, rates, totals, funnelSessionId, or visitorId: this tool validates availability and derives all of them on the server. If any required value is missing, invalid, or the selected room is unavailable, no checkout link is returned. This creates no booking and holds no inventory.
| Name | Required | Description | Default |
|---|---|---|---|
| room_slug | Yes | Exact room slug selected from check_room_availability. | |
| total_pax | Yes | Total number of staying guests, including adults and children. | |
| check_in_date | Yes | Guest check-in date in YYYY-MM-DD format. | |
| check_out_date | Yes | Guest check-out date in YYYY-MM-DD format. |
Output Schema
| Name | Required | Description |
|---|---|---|
| stay | Yes | |
| pricing | Yes | |
| checkout | Yes | |
| property | Yes | |
| selection | Yes | |
| apiVersion | Yes | |
| verification | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses critical behavior beyond annotations: it validates availability, derives values server-side, returns nothing on missing/invalid/unavailable inputs, and explicitly states 'This creates no booking and holds no inventory.' This aligns with readOnlyHint=true and adds failure-mode detail, exceeding the baseline set by annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences pack essential information: the action, prerequisites, a prohibition on fabricating values, and failure behavior. No redundancy or fluff; every clause earns its place, and the main action is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, full annotation coverage, and a detailed description covering prerequisites, server-side validation, failure conditions, and side-effect disclosure, the tool is fully specified. No critical context is missing for an agent to select and invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage with descriptions for all four parameters, so the description adds marginal semantic value. It does cross-reference room_slug to check_room_availability, but this is more of a usage guideline than a parameter semantic. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool generates a 'verified The Hill Kinabalu checkout link', specifies the required inputs (room_slug, check_in_date, check_out_date, total_pax), and distinguishes itself from siblings by referencing check_room_availability as the source of room_slug. This makes it unambiguous and sibling-discriminating.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states usage prerequisites ('only after the guest has supplied...') and directs users to use the room_slug from check_room_availability. It also warns against inventing values, providing clear when-to-use and when-not-to-use guidance relative to the availability-check sibling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_wedding_informationGet wedding informationARead-onlyIdempotentInspect
Retrieve The Hill Kinabalu’s official public wedding venue and 2026/2027 package information, including capacity, event sizes, starting package prices, key inclusions, add-ons without prices, payment structures, and enquiry links. Use this when someone asks about weddings, wedding packages, the event venue, guest capacity, package pricing, or how to enquire. This tool does not check date availability or submit an enquiry.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| meta | Yes | |
| venue | Yes | |
| addOns | Yes | |
| contact | Yes | |
| packages | Yes | |
| property | Yes | |
| apiVersion | Yes | |
| collection | Yes | |
| paymentPlans | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds valuable context: the information is official public data, limited to 2026/2027, includes specific data scopes, and explicitly rules out availability checking and enquiry submission. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: the first describes what it retrieves, the second specifies when to use it, and the third states its limitations. The description is information-dense but well-organized and free of fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no params) and the rich annotations/output schema, the description covers all necessary context: purpose, usage guidance, data scope, and exclusions. It fully differentiates from sibling tools and leaves no significant ambiguity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no parameters, and schema description coverage is 100%. The baseline for 0-parameter tools is 4. The description does not need to explain parameters, and it correctly avoids adding irrelevant parameter details.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool retrieves The Hill Kinabalu's official public wedding venue and 2026/2027 package information, listing specific data types like capacity, pricing, inclusions, and payment structures. It distinguishes itself from sibling tools by focusing exclusively on wedding-related information.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides explicit usage triggers ('Use this when someone asks about weddings...') and explicit exclusions ('does not check date availability or submit an enquiry'), effectively guiding the agent to alternatives like check_room_availability for availability and generate_booking_link for enquiries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_roomsList roomsARead-onlyIdempotentInspect
Retrieve The Hill Kinabalu’s official current room catalogue, including room types, indicative weekday and weekend rates, guest capacity, beds, amenities, unit counts, images, and booking links. Use this when someone asks which rooms The Hill Kinabalu offers or what its room rates are. This catalogue does not check availability for specific dates.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| meta | Yes | |
| rooms | Yes | |
| property | Yes | |
| apiVersion | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=false, idempotentHint=true, destructiveHint=false. The description adds context beyond these by clarifying the catalogue is 'official current' and that rates are 'indicative' and that it does not check date-specific availability, which is a key limitation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the main purpose, then usage guidance. Every word contributes value; no redundancy. Perfectly sized for an agent to understand and act on quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (no parameters, output schema present), the description fully covers the data content, the authoritative source, and the limitation regarding availability. It is complete for an agent to decide when and how to invoke it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the schema provides no additional semantics. The description sufficiently explains what the tool returns. A baseline of 4 is appropriate since no parameter documentation is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: retrieving The Hill Kinabalu's official current room catalogue with a specific list of data (room types, rates, capacity, beds, amenities, unit counts, images, booking links). It also distinguishes itself from availability check by explicitly saying this catalogue does not check availability.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance on when to use this tool: 'Use this when someone asks which rooms The Hill Kinabalu offers or what its room rates are.' It also tells when not to use it (does not check availability), implicitly directing to sibling tools like check_room_availability.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityAmaintenanceSearch vacation rental properties, check real-time availability, get canonical pricing quotes, and create direct bookings. Each property is its own node with live data. Supports staircase pricing, seasonal rates, and 11 languages.1132762Apache 2.0
- Alicense-qualityBmaintenanceBook hotels worldwide — search, price, prebook & book across 249 countries. 65 tools for hotel search, flights, loyalty, analytics. Zero API keys needed. at best prices for hotels 3 M+ property91MIT
- Flicense-qualityBmaintenanceProvides live hotel room rates, availability, and guest reviews from Agoda, enabling searches by destination and dates, property details, and structured review data.
- AlicenseAqualityBmaintenanceEnables searching SAC huts, checking availability, and preparing booking or cancellation handoffs on hut-reservation.org with a safety model for writes.10122MIT