QUICK_START.mdā¢966 B
# Quick Start Guide
Get up and running in 5 minutes!
## 1. Install Dependencies
```bash
pip install -r requirements.txt
```
## 2. Get Configuration Path
Run the helper script to get the correct path:
```bash
python get_path.py
```
Copy the output and use it in your Gemini CLI config.
## 3. Start the Weather API
```bash
python weather_api.py
```
Keep this running in one terminal.
## 4. Configure Gemini CLI
**Windows:** `%APPDATA%\Google\Gemini CLI\mcp_config.json`
Add the configuration from `get_path.py` output.
## 5. Test It!
```bash
# List available tools
gemini mcp list
# Get weather
gemini mcp call weather-info get_weather --city "Tokyo"
# Health check
gemini mcp call weather-info check_api_health
# Multiple cities
gemini mcp call weather-info get_weather_batch --cities "London,Paris,New York"
```
## That's It! š
For detailed setup instructions, see `setup_instructions.md`
For recording guide, see `SCREEN_RECORDING_GUIDE.md`