# tixxly

Tixxly MCP server -- search, browse, and book tours, activities, and experiences through any AI assistant. Connects AI agents to real-time travel inventory with availability checking, reservation cre…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add TeamTixxly/tixxly

# Browse available tools
npx -y @smithery/cli@latest tool list TeamTixxly/tixxly

# Get full schema for a tool
npx -y @smithery/cli@latest tool get TeamTixxly/tixxly search_experiences

# Call a tool
npx -y @smithery/cli@latest tool call TeamTixxly/tixxly search_experiences '{}'
```

## Direct MCP Connection

Endpoint: `https://tixxly--teamtixxly.run.tools`

**Optional config:**
- `TIXXLY_API_KEY` (header) — x-api-key

## Tools (7)

- `search_experiences` — Search for tours, activities, and experiences by query, location, or category
- `get_experience_detail` — Get full details for a specific experience including pricing, descriptions, and images
- `check_availability` — Check available dates, time slots, and pricing for an experience
- `get_booking_options` — Get booking form requirements -- passenger details, contact questions
- `create_reservation` — Create a reservation and initiate payment. Returns a payment URL for the customer.
- `confirm_booking` — Confirm a reservation and capture payment after customer completes checkout
- `get_booking_status` — Check the current status of an existing reservation

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get TeamTixxly/tixxly <tool-name>
```
