新增 parse_json 工具,用于读取 txt 或 json 文件内容并智能解析。 工具优先尝试将内容解析为JSON,返回结构化数据;若解析失败则作为纯文本返回。 同时更新项目版本号至 0.1.3。
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.3"
|
|
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"]
|