/* * Copyright (c) 2023-2026, Easy-Agents (fuhai999@gmail.com). *

* Licensed under the Apache License, Version 2.0 (the "License"); */ package com.easyagents.mcp.client; /** * MCP 检测状态。 */ public enum McpCheckStatus { /** * 检测通过。 */ SUCCESS, /** * 检测存在警告但不一定阻断使用。 */ WARNING, /** * 检测失败。 */ FAILED }