feat: 对接 Agent MCP 能力
- 新增 runtime MCP 声明、ClientFactory、Toolkit 适配与工具别名映射 - 增加 MCP 环境检测与 stdio 环境变量透传 - 补齐 MCP 工具事件、审批与生命周期释放测试
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* Copyright (c) 2023-2026, Easy-Agents (fuhai999@gmail.com).
|
||||
* <p>
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
*/
|
||||
package com.easyagents.mcp.client;
|
||||
|
||||
/**
|
||||
* MCP 检测状态。
|
||||
*/
|
||||
public enum McpCheckStatus {
|
||||
|
||||
/**
|
||||
* 检测通过。
|
||||
*/
|
||||
SUCCESS,
|
||||
|
||||
/**
|
||||
* 检测存在警告但不一定阻断使用。
|
||||
*/
|
||||
WARNING,
|
||||
|
||||
/**
|
||||
* 检测失败。
|
||||
*/
|
||||
FAILED
|
||||
}
|
||||
Reference in New Issue
Block a user