Metadata-Version: 2.4
Name: weather-server
Version: 1.0.0
Summary: 一个基于 FastMCP 的天气查询服务
Author: Mr.Car
Author-email: 534192336car@gmail.com
Project-URL: Source, https://github.com/yourusername/weather-server
Project-URL: Bug Reports, https://github.com/yourusername/weather-server/issues
Keywords: weather,mcp,fastmcp,api
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.12.0
Description-Content-Type: text/markdown
Requires-Dist: fastmcp<0.5.0,>=0.4.1
Requires-Dist: httpx<0.29.0,>=0.28.1
Requires-Dist: python-dotenv<2.0.0,>=1.0.1
Requires-Dist: pinyin<0.5.0,>=0.4.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

<!--
 * @Author: Mr.Car
 * @Date: 2025-03-20 17:40:04
-->
# Weather MCP Tool

[English](README.md) | [中文](README_zh.md)

<!-- Chinese Version -->
# Weather MCP Tool

一个极简的天气查询 MCP 工具，只需一句话即可查询全球天气。完美集成 Cursor 编辑器，支持中英文自然语言交互。

## 特性

- 💡 极简使用：一句话查询天气
- 🤖 智能交互：支持中英文自然语言
- 🌏 全球天气：支持所有主要城市
- 🔌 即插即用：完美集成 Cursor

## 三步上手

### 1. 安装

```bash
git clone https://github.com/yourusername/weather-server.git && cd weather-server && pip install -e .
```

### 2. 配置

> 🔑 [获取 OpenWeather API Key](https://home.openweathermap.org/api_keys)

**方法一：快速配置（推荐）**

复制示例配置文件并修改：
```bash
cp env.example .env
```
然后编辑 `.env` 文件，将 `your_api_key_here` 替换为您的 API Key。

**方法二：环境变量**

macOS/Linux:
```bash
export OPENWEATHERMAP_API_KEY="your_api_key"
```

Windows:
```cmd
set OPENWEATHERMAP_API_KEY=your_api_key
```

### 3. 启用工具

编辑 `~/.cursor/mcp.json`（Windows: `%USERPROFILE%\.cursor\mcp.json`）：
```json
{
    "weather_fastmcp": {
        "command": "python",
        "args": ["-m", "weather_server.server"]
    }
}
```

重启 Cursor 即可使用！

## 使用示例

直接在 Cursor 中输入：
```
查询苏州天气
北京明天会下雨吗？
Show me the weather in Tokyo
What's the forecast for London?
```

就是这么简单！

## 参数说明

如果需要更精确的查询，可以指定以下参数：

| 参数 | 说明 | 默认值 |
|------|------|--------|
| city | 城市名称（中/英文） | 必填 |
| days | 预报天数（1-5天） | 5 |
| units | 温度单位 (metric/imperial) | metric |
| lang | 返回语言 (zh_cn/en) | zh_cn |

## 常见问题

1. **无法使用？**
   - 确保 API Key 已正确设置
   - 重启 Cursor
   - 检查 Python 环境

2. **找不到城市？**
   - 尝试使用英文名
   - 检查拼写是否正确
   - 使用完整城市名

---

<!-- English Version -->
# Weather MCP Tool

A minimalist weather query MCP tool that allows you to check global weather with just one sentence. Perfectly integrated with Cursor editor, supporting both Chinese and English natural language interaction.

## Features

- 💡 Minimalist: One-line weather query
- 🤖 Smart: Natural language support in Chinese/English
- 🌏 Global: Support for all major cities
- 🔌 Plug & Play: Perfect Cursor integration

## Quick Start

### 1. Installation

```bash
git clone https://github.com/yourusername/weather-server.git && cd weather-server && pip install -e .
```

### 2. Configuration

> 🔑 [Get OpenWeather API Key](https://home.openweathermap.org/api_keys)

**Method 1: Quick Setup (Recommended)**

Copy the example configuration file and modify it:
```bash
cp env.example .env
```
Then edit the `.env` file, replace `your_api_key_here` with your API Key.

**Method 2: Environment Variables**

macOS/Linux:
```bash
export OPENWEATHERMAP_API_KEY="your_api_key"
```

Windows:
```cmd
set OPENWEATHERMAP_API_KEY=your_api_key
```

### 3. Enable Tool

Edit `~/.cursor/mcp.json` (Windows: `%USERPROFILE%\.cursor\mcp.json`):
```json
{
    "weather_fastmcp": {
        "command": "python",
        "args": ["-m", "weather_server.server"]
    }
}
```

Restart Cursor and you're ready to go!

## Usage Examples

Simply type in Cursor:
```
查询苏州天气
北京明天会下雨吗？
Show me the weather in Tokyo
What's the forecast for London?
```

That's it!

## Parameters

For more precise queries, you can specify these parameters:

| Parameter | Description | Default |
|-----------|-------------|---------|
| city | City name (Chinese/English) | Required |
| days | Forecast days (1-5) | 5 |
| units | Temperature unit (metric/imperial) | metric |
| lang | Response language (zh_cn/en) | zh_cn |

## FAQ

1. **Not Working?**
   - Ensure API Key is set correctly
   - Restart Cursor
   - Check Python environment

2. **City Not Found?**
   - Try using English name
   - Check spelling
   - Use complete city name

## Author

- Mr.Car
- Email: your.email@example.com

## Acknowledgments

- [FastMCP](https://github.com/microsoft/fastmcp)
- [OpenWeatherMap](https://openweathermap.org/)
- [Cursor](https://cursor.sh/)
