添加 lzwcai_temi_mcp 包,实现基于MQTT的轮足机器人导航控制服务器。包含以下功能: - 通过 MQTT 发布机器人控制命令 - 提供 goto、speak、reception、repose、patrol 等导航工具 - 支持通过 MCP 协议与AI助手集成 - 更新 lzwcai_lark_mcp 版本至 0.1.11
22 lines
435 B
TOML
22 lines
435 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lzwcai-lark-mcp"
|
|
version = "0.1.11"
|
|
description = "Lark MCP server"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp[cli]>=1.6.0",
|
|
"openpyxl>=3.1.2",
|
|
"python-dotenv>=0.21.0",
|
|
"requests>=2.25.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
lzwcai-lark-mcp = "lzwcai_lark_mcp.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["lzwcai_lark_mcp"]
|