Metadata-Version: 2.4
Name: lohas-app-hotel-search-gzp-mcp-server
Version: 1.0.5
Summary: MCP Server for hotel search with intent classification and tagging
Author-email: lohas <lohas@example.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/lohas/mcp-hotel-server
Project-URL: Repository, https://github.com/lohas/mcp-hotel-server
Project-URL: Issues, https://github.com/lohas/mcp-hotel-server/issues
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: mcp[cli]<2.0.0,>=1.12.4
Requires-Dist: mysql-connector-python>=9.4.0
Requires-Dist: beautifulsoup4>=4.12.0
Requires-Dist: python-dotenv>=1.0.0

# MCP Hotel Server

MCP (Model Context Protocol) server for hotel search functionality.

## Installation

```bash
uv sync
# or
pip install -e .
```

## Usage

```bash
python main.py
```

## Configuration

Create a `.env` file with database credentials:

```env
DB_HOST=your_host
DB_PORT=3306
DB_USER=your_user
DB_PASSWORD=your_password
DB_NAME=hotel_bidder
```

## Dependencies

- mcp >= 1.12.4
- mysql-connector-python >= 9.4.0
- beautifulsoup4
