feat(analyzeWorkOrder): 重构工单分析MCP技能模块并更新业务查询配置

- 将项目名称从 lzwcai-mcp-sqlexecutor 重命名为 lzwcai-mcpskills-analyzeWorkOrder
- 更新 README.md 中的安装命令、使用说明和配置示例
- 本地化业务查询名称,将中文业务名称改为英文,如"查询列表"改为"QueryList"
- 优化SQL模板,移除中文列别名,使用英文字段名
- 新增销售订单相关查询功能,包括订单列表、订单详情、交付风险预测
- 添加部门人效产值损耗三维仪表盘查询
- 更新包的初始化信息和版本号
This commit is contained in:
2026-01-07 22:05:44 +08:00
parent 79374b0d2f
commit 053d98dffd
10 changed files with 255 additions and 31 deletions

View File

@@ -1,4 +1,4 @@
# lzwcai-mcp-sqlexecutor
# lzwcai-mcpskills-analyzeWorkOrder
一个基于 MCP (Model Context Protocol) 的 SQL 查询执行服务器,支持从 JSON 配置文件动态生成查询工具。
@@ -14,7 +14,7 @@
### 使用 pip 安装
```bash
pip install lzwcai-mcp-sqlexecutor
pip install lzwcai-mcpskills-analyzeWorkOrder
```
### 从源码安装
@@ -28,7 +28,7 @@ pip install -e .
### 使用 uv 安装(推荐)
```bash
uv pip install lzwcai-mcp-sqlexecutor
uv pip install lzwcai-mcpskills-analyzeWorkOrder
```
## 使用方法
@@ -38,7 +38,7 @@ uv pip install lzwcai-mcp-sqlexecutor
安装后,可以直接通过命令启动:
```bash
lzwcai-mcp-sqlexecutor
lzwcai-mcpskills-analyzeWorkOrder
```
### 作为 Python 模块运行
@@ -55,7 +55,7 @@ python -m lzwcai_mcp_sqlexecutor.main
{
"mcpServers": {
"lzwcai-sqlexecutor": {
"command": "lzwcai-mcp-sqlexecutor"
"command": "lzwcai-mcpskills-analyzeWorkOrder"
}
}
}