# travel-deals-mcp

Travel Deals MCP is a Model Context Protocol server that lets AI agents search curated resort packages, vacation bundles, and travel deals in real time — no website, no SEO, no search engine.

## Quick Start

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

# Browse available tools
npx -y @smithery/cli@latest tool list shokjak/travel-deals-mcp

# Get full schema for a tool
npx -y @smithery/cli@latest tool get shokjak/travel-deals-mcp search_deals

# Call a tool
npx -y @smithery/cli@latest tool call shokjak/travel-deals-mcp search_deals '{}'
```

## Direct MCP Connection

Endpoint: `https://travel-deals-mcp--shokjak.run.tools`

## Tools (6)

- `search_deals` — Search curated travel deals by destination, type, price, or tags. Returns JSON.
- `get_deal` — Get full details for a specific deal by ID. Returns JSON.
- `list_deal_types` — Return all available deal type categories as JSON list.
- `list_tags` — Return all available deal tags as JSON list.
- `list_countries` — Return all countries with deals as JSON list.
- `get_stats` — Return summary statistics as JSON.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get shokjak/travel-deals-mcp <tool-name>
```
