{ "_schema_version" : "1.0", "description" : "MCP能力注册表 - 细粒度MCP工具定义(每个MCP Server一个工具,规范化入参出参)", "lastUpdated" : "2026-05-06", "usage_guide" : { "id" : "MCP能力唯一标识(建议mcp_前缀)", "name" : "显示名称(中文)", "toolName" : "MCP Server上的原始工具名", "sseUrl" : "MCP Server的SSE端点URL", "apiKeyConfig" : "Spring配置属性名,用于解析API Key", "apiKeyDefault" : "API Key的默认值(可选,当配置属性不存在时使用)", "domain" : "功能域分类", "category" : "固定为MCP_TOOL", "briefDescription" : "简要描述(50字内,用于AI任务匹配)", "videoCallSummary" : "精简描述(15字内,供视频通话等场景的意图识别使用)", "description" : "完整描述(用于AI语义理解和工具选择)", "input" : "输入参数Schema(同unified_capability_registry格式)", "output" : "输出参数Schema(同unified_capability_registry格式)", "timeoutMs" : "调用超时时间(毫秒),图像生成建议120000+", "enabled" : "是否启用", "videoCallEnabled" : "视频通话场景是否启用该工具(布尔值)" }, "mcp_tools" : [ { "id" : "mcp_wan25_image_edit", "name" : "万相2.5图像编辑", "toolName" : "modelstudio_image_edit_wan25", "sseUrl" : "https://dashscope.aliyuncs.com/api/v1/mcps/Wan25Media/sse", "apiKeyConfig" : "dashscope.api-key", "apiKeyDefault" : "${LLM_API_KEY}", "domain" : "image_processing", "category" : "MCP_TOOL", "briefDescription" : "AI图像编辑(图生图)服务,输入原图URL和描述返回编辑后图片URL", "videoCallSummary" : "AI编辑图片", "description" : "基于万相2.5的AI图像编辑(图生图)服务,通过MCP SSE协议调用DashScope平台。输入原图URL、编辑功能、文本描述和分辨率,自动对图片进行智能编辑并返回编辑后的图片URL。支持多种图像编辑操作。", "input" : { "prompt" : { "type" : "string", "required" : true, "description" : "正向提示词,用来描述生成图像中期望包含的元素和视觉特点,超过2000字自动截断" }, "images" : { "type" : "array", "required" : true, "description" : "输入图像URL数组。URL不能包含中文字符,需为公网可访问地址" } }, "output" : { "results" : { "type" : "array", "required" : true, "description" : "编辑后的图像URL列表" }, "request_id" : { "type" : "string", "description" : "请求ID" } }, "timeoutMs" : 120000, "enabled" : false, "videoCallEnabled" : false }, { "id" : "mcp_wan25_image_gen", "name" : "万相2.5图像生成", "toolName" : "modelstudio_image_gen_wan25", "sseUrl" : "https://dashscope.aliyuncs.com/api/v1/mcps/Wan25Media/sse", "apiKeyConfig" : "dashscope.api-key", "apiKeyDefault" : "${LLM_API_KEY}", "domain" : "image_processing", "category" : "MCP_TOOL", "briefDescription" : "AI绘画服务,输入文本描述返回图片URL", "videoCallSummary" : "AI生成图片", "description" : "基于万相2.5的AI绘画(图像生成)服务,通过MCP SSE协议调用DashScope平台。输入正向提示词,自动生成高质量图片并返回OSS图片URL。支持多种风格和场景的图像创作。", "input" : { "prompt" : { "type" : "string", "required" : true, "description" : "正向提示词,描述需要生成的图像内容" } }, "output" : { "results" : { "type" : "array", "required" : true, "description" : "生成的图像URL列表" }, "request_id" : { "type" : "string", "description" : "请求ID" } }, "timeoutMs" : 120000, "enabled" : false, "videoCallEnabled" : false }, { "id" : "mcp_web_search_pro", "name" : "网络搜索Pro", "toolName" : "webSearchPro", "sseUrl" : "https://dashscope.aliyuncs.com/api/v1/mcps/zhipu-websearch/sse", "apiKeyConfig" : "dashscope.api-key", "apiKeyDefault" : "${LLM_API_KEY}", "domain" : "web_search", "category" : "MCP_TOOL", "briefDescription" : "搜索网络信息,返回网页标题、URL、摘要、网站名称及图标", "videoCallSummary" : "联网搜索信息", "description" : "网络搜索Pro服务,搜索网络信息并返回结果,包括网页标题、网页URL、网页摘要、网站名称、网站图标等。通过MCP SSE协议调用DashScope平台的zhipu-websearch服务,支持控制摘要字数、结果条数、域名过滤和时间范围过滤。", "input" : { "search_query" : { "type" : "string", "required" : true, "description" : "需要进行搜索的内容,建议搜索query不超过70个字符", "example" : "周杰伦" }, "content_size" : { "type" : "string", "required" : false, "description" : "控制网页摘要的字数。medium:平衡模式(400-600字,默认);high:最大化上下文(2500字,成本较高)", "example" : "medium" }, "count" : { "type" : "integer", "required" : false, "description" : "返回结果的条数,可填范围:1-50,默认为10", "example" : 3 }, "search_domain_filter" : { "type" : "string", "required" : false, "description" : "限定搜索结果的范围,仅返回指定白名单域名的内容", "example" : "www.sohu.com" }, "search_recency_filter" : { "type" : "string", "required" : false, "description" : "搜索指定时间范围内的网页。可选值:oneDay(一天内)、oneWeek(一周内)、oneMonth(一个月内)、oneYear(一年内)、noLimit(不限,默认)", "example" : "oneMonth" } }, "output" : { "results" : { "type" : "array", "description" : "搜索结果列表,每项结果已包含完整的文本摘要内容(content字段),可直接作为下游工具的文本输入使用,无需额外调用网页抓取或摘要工具", "items" : { "type" : "object", "properties" : { "title" : { "type" : "string", "description" : "网页标题" }, "url" : { "type" : "string", "description" : "网页URL地址" }, "content" : { "type" : "string", "description" : "网页摘要文本内容(已包含完整文本信息,可直接使用,无需再次抓取网页)" }, "site_name" : { "type" : "string", "description" : "网站名称" }, "icon" : { "type" : "string", "description" : "网站图标URL" } } } } }, "timeoutMs" : 30000, "enabled" : true, "videoCallEnabled" : false } ] }