* feat(mcp): 新增gva_review工具并优化字典和代码生成逻辑 * fix: 调整mcp整体逻辑 * chore: 更新.gitignore,添加对本地配置文件的忽略 * feat(logo): 新增Logo组件并在多个页面中替换原有logo实现 * fix: 修复菜单 Logo 部分删除文本后显示异常的问题 * fix:添加字典列表搜索,支持中英文搜索.添加字典详情搜索 * style: 优化部分视觉样式 * feat: 增强错误预览组件的暗黑模式支持 * feat: 优化请求错误消息获取逻辑,增加状态文本优先级 * feat: 添加前端登录验证码静态验证逻辑 * feat: 添加开发环境启动脚本 * feat: 更新 SvgIcon 组件,支持本地图标和 Iconify 图标、移除未使用的 unocss 依赖 * fix:字典支持 tree 结构 * feat: 优化动态路由注册方式 * feat: 添加配置控制标签页keep-alive功能 * feat: 添加全局错误处理机制,捕获 Vue 和 JS 错误 * refactor: 移除API和菜单创建结果中的权限分配提醒,优化输出信息 * feat: 更新 reset.scss,优化全局样式重置,增强兼容性和可读性 * refactor(字典详情): 优化字典详情查询逻辑,移除预加载改为按需加载 * refactor(路由管理): 优化路由添加逻辑,增强路径处理和顶级路由注册 * refactor(系统配置): 将auto-migrate修改为disable-auto-migrate,保证用户升级的兼容性 * feat(utils): 优化字典数据递归查找功能并替换select为tree-select * fix(deps): 修复在字段类型为file生成搜索条件无法运行的bug * fix: 修复header的tools中icon不展示的问题 --------- Co-authored-by: piexlMax(奇淼 <qimiaojiangjizhao@gmail.com> Co-authored-by: Azir-11 <2075125282@qq.com> Co-authored-by: bypanghu <bypanghu@163.com> Co-authored-by: feitianbubu <feitianbubu@qq.com> Co-authored-by: 青菜白玉汤 <79054161+Azir-11@users.noreply.github.com> Co-authored-by: krank <emosick@qq.com>
192 lines
5.3 KiB
Go
192 lines
5.3 KiB
Go
package mcpTool
|
||
|
||
import (
|
||
"context"
|
||
"encoding/json"
|
||
"errors"
|
||
"fmt"
|
||
|
||
"github.com/flipped-aurora/gin-vue-admin/server/global"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/model/system"
|
||
"github.com/flipped-aurora/gin-vue-admin/server/service"
|
||
"github.com/mark3labs/mcp-go/mcp"
|
||
"go.uber.org/zap"
|
||
)
|
||
|
||
// 注册工具
|
||
func init() {
|
||
RegisterTool(&ApiCreator{})
|
||
}
|
||
|
||
// ApiCreateRequest API创建请求结构
|
||
type ApiCreateRequest struct {
|
||
Path string `json:"path"` // API路径
|
||
Description string `json:"description"` // API中文描述
|
||
ApiGroup string `json:"apiGroup"` // API组
|
||
Method string `json:"method"` // HTTP方法
|
||
}
|
||
|
||
// ApiCreateResponse API创建响应结构
|
||
type ApiCreateResponse struct {
|
||
Success bool `json:"success"`
|
||
Message string `json:"message"`
|
||
ApiID uint `json:"apiId"`
|
||
Path string `json:"path"`
|
||
Method string `json:"method"`
|
||
}
|
||
|
||
// ApiCreator API创建工具
|
||
type ApiCreator struct{}
|
||
|
||
// New 创建API创建工具
|
||
func (a *ApiCreator) New() mcp.Tool {
|
||
return mcp.NewTool("create_api",
|
||
mcp.WithDescription(`创建后端API记录,用于AI编辑器自动添加API接口时自动创建对应的API权限记录。
|
||
|
||
**重要限制:**
|
||
- 当使用gva_auto_generate工具且needCreatedModules=true时,模块创建会自动生成API权限,不应调用此工具
|
||
- 仅在以下情况使用:1) 单独创建API(不涉及模块创建);2) AI编辑器自动添加API;3) router下的文件产生路径变化时`),
|
||
mcp.WithString("path",
|
||
mcp.Required(),
|
||
mcp.Description("API路径,如:/user/create"),
|
||
),
|
||
mcp.WithString("description",
|
||
mcp.Required(),
|
||
mcp.Description("API中文描述,如:创建用户"),
|
||
),
|
||
mcp.WithString("apiGroup",
|
||
mcp.Required(),
|
||
mcp.Description("API组名称,用于分类管理,如:用户管理"),
|
||
),
|
||
mcp.WithString("method",
|
||
mcp.Description("HTTP方法"),
|
||
mcp.DefaultString("POST"),
|
||
),
|
||
mcp.WithString("apis",
|
||
mcp.Description("批量创建API的JSON字符串,格式:[{\"path\":\"/user/create\",\"description\":\"创建用户\",\"apiGroup\":\"用户管理\",\"method\":\"POST\"}]"),
|
||
),
|
||
)
|
||
}
|
||
|
||
// Handle 处理API创建请求
|
||
func (a *ApiCreator) Handle(ctx context.Context, request mcp.CallToolRequest) (*mcp.CallToolResult, error) {
|
||
args := request.GetArguments()
|
||
|
||
var apis []ApiCreateRequest
|
||
|
||
// 检查是否是批量创建
|
||
if apisStr, ok := args["apis"].(string); ok && apisStr != "" {
|
||
if err := json.Unmarshal([]byte(apisStr), &apis); err != nil {
|
||
return nil, fmt.Errorf("apis 参数格式错误: %v", err)
|
||
}
|
||
} else {
|
||
// 单个API创建
|
||
path, ok := args["path"].(string)
|
||
if !ok || path == "" {
|
||
return nil, errors.New("path 参数是必需的")
|
||
}
|
||
|
||
description, ok := args["description"].(string)
|
||
if !ok || description == "" {
|
||
return nil, errors.New("description 参数是必需的")
|
||
}
|
||
|
||
apiGroup, ok := args["apiGroup"].(string)
|
||
if !ok || apiGroup == "" {
|
||
return nil, errors.New("apiGroup 参数是必需的")
|
||
}
|
||
|
||
method := "POST"
|
||
if val, ok := args["method"].(string); ok && val != "" {
|
||
method = val
|
||
}
|
||
|
||
apis = append(apis, ApiCreateRequest{
|
||
Path: path,
|
||
Description: description,
|
||
ApiGroup: apiGroup,
|
||
Method: method,
|
||
})
|
||
}
|
||
|
||
if len(apis) == 0 {
|
||
return nil, errors.New("没有要创建的API")
|
||
}
|
||
|
||
// 创建API记录
|
||
apiService := service.ServiceGroupApp.SystemServiceGroup.ApiService
|
||
var responses []ApiCreateResponse
|
||
successCount := 0
|
||
|
||
for _, apiReq := range apis {
|
||
api := system.SysApi{
|
||
Path: apiReq.Path,
|
||
Description: apiReq.Description,
|
||
ApiGroup: apiReq.ApiGroup,
|
||
Method: apiReq.Method,
|
||
}
|
||
|
||
err := apiService.CreateApi(api)
|
||
if err != nil {
|
||
global.GVA_LOG.Warn("创建API失败",
|
||
zap.String("path", apiReq.Path),
|
||
zap.String("method", apiReq.Method),
|
||
zap.Error(err))
|
||
|
||
responses = append(responses, ApiCreateResponse{
|
||
Success: false,
|
||
Message: fmt.Sprintf("创建API失败: %v", err),
|
||
Path: apiReq.Path,
|
||
Method: apiReq.Method,
|
||
})
|
||
} else {
|
||
// 获取创建的API ID
|
||
var createdApi system.SysApi
|
||
err = global.GVA_DB.Where("path = ? AND method = ?", apiReq.Path, apiReq.Method).First(&createdApi).Error
|
||
if err != nil {
|
||
global.GVA_LOG.Warn("获取创建的API ID失败", zap.Error(err))
|
||
}
|
||
|
||
responses = append(responses, ApiCreateResponse{
|
||
Success: true,
|
||
Message: fmt.Sprintf("成功创建API %s %s", apiReq.Method, apiReq.Path),
|
||
ApiID: createdApi.ID,
|
||
Path: apiReq.Path,
|
||
Method: apiReq.Method,
|
||
})
|
||
successCount++
|
||
}
|
||
}
|
||
|
||
// 构建总体响应
|
||
var resultMessage string
|
||
if len(apis) == 1 {
|
||
resultMessage = responses[0].Message
|
||
} else {
|
||
resultMessage = fmt.Sprintf("批量创建API完成,成功 %d 个,失败 %d 个", successCount, len(apis)-successCount)
|
||
}
|
||
|
||
result := map[string]interface{}{
|
||
"success": successCount > 0,
|
||
"message": resultMessage,
|
||
"totalCount": len(apis),
|
||
"successCount": successCount,
|
||
"failedCount": len(apis) - successCount,
|
||
"details": responses,
|
||
}
|
||
|
||
resultJSON, err := json.MarshalIndent(result, "", " ")
|
||
if err != nil {
|
||
return nil, fmt.Errorf("序列化结果失败: %v", err)
|
||
}
|
||
|
||
return &mcp.CallToolResult{
|
||
Content: []mcp.Content{
|
||
mcp.TextContent{
|
||
Type: "text",
|
||
Text: fmt.Sprintf("API创建结果:\n\n%s", string(resultJSON)),
|
||
},
|
||
},
|
||
}, nil
|
||
}
|