Files
lzwcai-mcp/lzwcai_temi_mcp/pyproject.toml
bin 3d04166314 feat: 新增轮足机器人导航MCP服务器
添加 lzwcai_temi_mcp 包,实现基于MQTT的轮足机器人导航控制服务器。包含以下功能:
- 通过 MQTT 发布机器人控制命令
- 提供 goto、speak、reception、repose、patrol 等导航工具
- 支持通过 MCP 协议与AI助手集成
- 更新 lzwcai_lark_mcp 版本至 0.1.11
2026-03-15 18:36:34 +08:00

27 lines
530 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lzwcai_temi_mcp"
version = "0.1.1"
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]
lzwcai_temi_mcp = "lzwcai_temi_mcp.main:main"
[tool.hatch.build.targets.wheel]
packages = ["lzwcai_temi_mcp"]