新增完整的 K3Cloud MCP 服务器实现,包含配置管理、API 客户端、工具定义和签名验证 更新文件工具 MCP 服务器的 MinIO 配置和上传路径前缀
22 lines
430 B
TOML
22 lines
430 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lzwcai-file-tools-mcp"
|
|
version = "0.1.1"
|
|
description = "File tools MCP server"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp[cli]>=1.6.0",
|
|
"openpyxl>=3.1.2",
|
|
"httpx>=0.24.0",
|
|
"minio>=7.2.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
lzwcai-file-tools-mcp = "file_tools.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["file_tools"]
|