Metadata-Version: 2.4
Name: pozansky_stock
Version: 0.1.0
Summary: Add your description here
Requires-Python: >=3.10
Requires-Dist: build>=1.3.0
Requires-Dist: hatchling>=1.27.0
Requires-Dist: httpx>=0.24.0
Requires-Dist: mcp[cli]>=1.15.0
Requires-Dist: numpy>=1.24.0
Requires-Dist: pandas>=2.0.0
Requires-Dist: psutil>=5.9.0
Description-Content-Type: text/markdown

# News MCP Server

基于MCP协议的新闻获取服务器，支持热点新闻获取和新闻搜索功能。

## 功能特性

- 🔥 获取热点新闻（多个分类）
- 🔍 搜索新闻
- 🌐 RESTful API 接口
- 🐳 Docker 容器化部署
- 📊 健康检查

## API接口

### 健康检查
GET /health

### 获取新闻分类
GET /news/categories


### 获取热点新闻
GET /news/hot?category=general&limit=10

### 搜索新闻
GET /news/search?keyword=科技&limit=10


### MCP接口
/mcp


## 本地测试


1. 安装依赖：
```bash
pip install -r requirements.txt
运行测试：

bash
python src/mcp_server.py
启动服务器：

bash
python app.py
