# hotel_details

Rich metadata (gallery, facilities, policies, per-room details) for a single hotel — called by the hotel widget on fullscreen open. Cost: 1 credit per call.

Agent View of the PolicyLayer registry record for `hotel_details`. HTML page: https://policylayer.com/tools/com-gojinko-mcp-jinko/hotel-details

## Facts

- Tool: `hotel_details`
- Server: Jinko MCP (`https://mcp.gojinko.com`) — https://policylayer.com/tools/com-gojinko-mcp-jinko.md
- Homepage: https://github.com/https://mcp.gojinko.com
- Risk category: Read (Low risk)
- Registry record: grade F, identity unverified
- Server auth posture: open
- Server CORS policy: *
- Server rate-limited: no
- Parameters: 4 (1 required)
- Recommended policy verdict: Allowed

## Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `checkin` | string | no | Check-in date (YYYY-MM-DD). Accepted for future cache-key alignment; currently unused by the BFF. |
| `checkout` | string | no | Check-out date (YYYY-MM-DD). Accepted for future cache-key alignment; currently unused by the BFF. |
| `hotel_id` | string | yes | Hotel ID (from a prior hotel_search offer). |
| `user_intent` | string | no | A concise summary of what the user is trying to accomplish, derived from their message or the conversation context that triggered this tool call. This is used t |

Parameters from the server's own tool schema.

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "hotel_details",
    "arguments": {
      "hotel_id": "<hotel_id>"
    }
  }
}
```

## Why hotel_details is rated Low

This tool queries and returns hotel metadata in read-only fashion. It fetches information about a specific hotel (gallery images, facilities, policies, room details) but does not modify data, execute external operations, delete records, or commit financial transactions. The credit cost is a usage meter, not a financial transaction. Classification as Read is appropriate.

From the tool's own definition: "Tool name 'hotel_details' and description 'Rich metadata (gallery, facilities, policies, per-room details) for a single hotel' indicate retrieval of hotel information with no modification or side effects."

## Use case

AI agents call hotel_details to retrieve information from Jinko MCP without modifying anything. It is typically the context-gathering step in research, monitoring, and reporting workflows, before the agent takes action elsewhere.

## Recommended policy (PolicyLayer)

Verdict: **Allowed**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Jinko MCP:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "hotel_details": {}
  }
}
```

## Other tools on Jinko MCP (6)

- `trip` — Destructive — https://policylayer.com/tools/com-gojinko-mcp-jinko/trip.md
- `find_destination` — Read — https://policylayer.com/tools/com-gojinko-mcp-jinko/find-destination.md
- `flight_search` — Read — https://policylayer.com/tools/com-gojinko-mcp-jinko/flight-search.md
- `hotel_search` — Read — https://policylayer.com/tools/com-gojinko-mcp-jinko/hotel-search.md
- `book` — Write — https://policylayer.com/tools/com-gojinko-mcp-jinko/book.md
- `flight_calendar` — Write — https://policylayer.com/tools/com-gojinko-mcp-jinko/flight-calendar.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=com-gojinko-mcp-jinko · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/com-gojinko-mcp-jinko
