# Trip1

[Trip1](https://trip1.com) lets you search and book hotels with crypto. 3M+ properties in 190+ countries, payable in 50+ cryptocurrencies.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add trip1/trip1

# Browse available tools
npx -y smithery tool list trip1/trip1

# Get full schema for a tool
npx -y smithery tool get trip1/trip1 search_hotels

# Call a tool
npx -y smithery tool call trip1/trip1 search_hotels '{}'
```

## Direct MCP Connection

Endpoint: `https://trip1.run.tools`

## Tools (4)

- `search_hotels` — Search for available hotels by destination and dates. Returns a list of matching hotels with pricing, images, and booki…
- `get_hotel_details` — Get rooms and rates for a hotel. Pass the hotel id from search_hotels results. Returns rate IDs needed for purchase_hot…
- `purchase_hotel` — Book a hotel room by providing guest details and a rate ID from get_hotel_details. Creates a guest profile, adds the ro…
- `get_order_details` — Get the current state of an order. Returns payment status, booking state, and item details. Poll until ready is true to…

```bash
# Get full input/output schema for a tool
npx -y smithery tool get trip1/trip1 <tool-name>
```
