- 新增飞书MCP服务,包含图片上传和消息卡片发送功能 - 新增文件工具MCP服务,提供文件转JSON和data URI功能 - 更新机器人MCP服务配置,移除环境变量硬编码 - 升级机器人版本至0.1.28并优化迎宾功能参数 - 添加.gitignore和项目配置文件
21 lines
408 B
TOML
21 lines
408 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lzwcai-mcpskills-file-tools-mcp"
|
|
version = "0.1.9"
|
|
description = "File tools MCP server"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp[cli]>=1.6.0",
|
|
"httpx>=0.24.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
lzwcai-mcpskills-file-tools-mcp = "file_tools.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["file_tools"]
|
|
|