- 新增飞书MCP服务,包含图片上传和消息卡片发送功能 - 新增文件工具MCP服务,提供文件转JSON和data URI功能 - 更新机器人MCP服务配置,移除环境变量硬编码 - 升级机器人版本至0.1.28并优化迎宾功能参数 - 添加.gitignore和项目配置文件
27 lines
539 B
TOML
27 lines
539 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "terminal_temi_mcp"
|
|
version = "0.1.28"
|
|
description = "MQTT-based navigation server for robot"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"fastapi>=0.95.0",
|
|
"uvicorn>=0.21.0",
|
|
"paho-mqtt>=2.0.0",
|
|
"pydantic>=1.10.0",
|
|
"python-dotenv>=0.21.0",
|
|
"mcp[cli]>=1.6.0",
|
|
"requests>=2.25.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
terminal_temi_mcp = "terminal_temi_mcp.main:main"
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["terminal_temi_mcp"]
|
|
|