Metadata-Version: 2.4
Name: mcp_educate_time_luxiju
Version: 0.1.1
Summary: A simple MCP time service
Author: luxiju
Author-email: 2332700621@qq.com
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: setuptools>=83.0.0
Requires-Dist: twine>=6.2.0
Requires-Dist: wheel>=0.47.0
Dynamic: author
Dynamic: author-email
Dynamic: requires-python

# MCP Educate Time

一个基于 MCP (Model Context Protocol) 的简单时间服务，提供获取当前系统时间的工具。

## 项目结构

```
me/
├── mcp_educate_time/         # Python 包
│   ├── __init__.py
│   └── time_server.py        # MCP 时间服务实现
├── time_server.py            # 根级时间服务（同上）
├── main.py                   # 入口示例
├── pyproject.toml            # 项目配置
├── setup.py                  # 安装配置
├── .mcp.json                 # MCP 配置（含 Bing Search）
├── .python-version           # Python 版本
└── uv.lock                   # 依赖锁定文件
```

## 功能

- `get_time()` — 获取当前系统时间（通过 MCP Tool 暴露）

## 快速开始

### 安装依赖

```bash
pip install -e .
```

### 运行服务

```bash
python time_server.py
```

服务默认通过 `stdio` 传输运行，可与支持 MCP 的客户端（如 Claude Desktop、Trae IDE 等）集成。

## 发布到 PyPI

```bash
python -m build
python -m twine upload dist/*
```

## 许可证

MIT
