- 创建基于MCP协议的SQL查询执行服务器 - 实现从businessQueries.json动态生成查询工具功能 - 支持中文工具名称自动转换为拼音 - 配置详细操作日志记录(仅输出到文件,不干扰MCP通信) - 添加订单延迟预警分析、工单进度跟踪、供应链风险预警等6个业务查询模板 - 提供完整的安装、使用和开发文档
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "lzwcai-mcpskills-analyzeOrder"
|
|
version = "0.1.12"
|
|
description = "MCP server for executing business SQL queries with dynamic tool generation"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "lzwcai", email = "your-email@example.com"},
|
|
]
|
|
keywords = ["mcp", "sql", "executor", "server"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
dependencies = [
|
|
"httpx>=0.28.1",
|
|
"mcp[cli]>=1.10.1",
|
|
"pypinyin>=0.53.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
lzwcai-mcpskills-analyzeOrder = "lzwcai_mcpskills_analyzeOrder.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["lzwcai_mcpskills_analyzeOrder"]
|
|
|
|
[tool.hatch.build.targets.wheel.force-include]
|
|
"lzwcai_mcpskills_analyzeOrder/businessQueries.json" = "lzwcai_mcpskills_analyzeOrder/businessQueries.json"
|