Metadata-Version: 2.4
Name: hotel-price-compare-mcp
Version: 1.0.1
Summary: 跨平台酒店比价MCP服务，5大旅游平台酒店价格对比（飞猪+RG+途牛+美团+同程）
Author: mako2026
License: MIT
Keywords: mcp,hotel,price-compare,fliggy,tuniu,tongcheng,meituan,rollinggo
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: mcp[cli]>=1.0.0

# 跨平台酒店比价 MCP Server

跨平台酒店比价服务，同时搜索飞猪、途牛、同程、美团、RG五大旅游平台酒店价格，按价格从低到高排序，展示最低价预订链接。

## 功能

### 🏨 酒店比价 (`hotel_compare`)

同时搜索五大平台酒店价格，支持按城市、日期、关键词搜索，展示各平台价格和最低价预订链接。

**两种模式：**
- **搜索浏览模式**：输入城市名，浏览该城市酒店列表
- **精确比价模式**：输入酒店名称，对比5大平台该酒店价格

**参数：**
| 参数 | 说明 | 必填 |
|------|------|------|
| city | 城市名（如上海、北京、三亚） | 是 |
| check_in | 入住日期（YYYY-MM-DD） | 是 |
| check_out | 退房日期（YYYY-MM-DD） | 是 |
| keyword | 搜索关键词（如外滩、亚龙湾、迪士尼） | 否 |
| hotel_name | 酒店名称（精确比价模式） | 否 |

**使用场景：**
- **搜索浏览模式**：只填 `city`，浏览该城市酒店列表
- **精确比价模式**：填 `hotel_name`，对比5大平台该酒店价格

## 安装

```bash
pip install hotel-price-compare-mcp
```

或使用 uvx 直接运行：

```bash
uvx hotel-price-compare-mcp
```

## 使用

### 命令行启动

```bash
hotel-price-compare-mcp
```

### MCP 客户端配置

在支持 MCP 的客户端（如 Claude Desktop、Cursor、Cherry Studio）中添加：

```json
{
  "mcpServers": {
    "hotel-price-compare": {
      "command": "uvx",
      "args": ["hotel-price-compare-mcp"]
    }
  }
}
```

Windows 系统：

```json
{
  "mcpServers": {
    "hotel-price-compare": {
      "command": "cmd",
      "args": ["/c", "uvx", "hotel-price-compare-mcp"]
    }
  }
}
```

## 数据源

| 平台 | 说明 |
|------|------|
| 飞猪 | 阿里旗下旅行平台 |
| 途牛 | 综合旅行平台 |
| 同程 | 腾讯系旅行平台 |
| 美团 | 本地生活+旅行 |
| RG | 全球旅行预订 |

## License

MIT
