feat(lzwcai_mcpskills_analyzeOrder): 添加MCP技能分析订单模块

- 创建基于MCP协议的SQL查询执行服务器
- 实现从businessQueries.json动态生成查询工具功能
- 支持中文工具名称自动转换为拼音
- 配置详细操作日志记录(仅输出到文件,不干扰MCP通信)
- 添加订单延迟预警分析、工单进度跟踪、供应链风险预警等6个业务查询模板
- 提供完整的安装、使用和开发文档
This commit is contained in:
2026-01-08 00:31:22 +08:00
parent 053d98dffd
commit 2d2db5e866
73 changed files with 23927 additions and 56 deletions

View File

@@ -1,5 +1,5 @@
"""
Entry point for lzwcai-mcpskills-analyzeWorkOrder
Entry point for lzwcai-mcpskills-analyzeOrder
Runs the MCP server for SQL query execution
"""
import os
@@ -9,5 +9,5 @@ os.environ["datasourceId"] = "19"
os.environ["backendBaseUrl"] = "http://192.168.11.24:8088"
if __name__ == "__main__":
# Import and run the actual MCP server
from lzwcai_mcpskills_analyzeWorkOrder.main import main
from lzwcai_mcpskills_analyzeOrder.main import main
main()