Transport [rmcp::transport::worker::WorkerTransport<rmcp::transport::streamable_...
错误信息
⚠ Model metadata for `deepseek-v4-pro` not found. Defaulting to fallback metadata; this can degrade performance and
cause issues.
⚠ MCP client for `codex_apps` failed to start: MCP startup failed: handshaking with MCP server failed: Send message
error Transport
[rmcp::transport::worker::WorkerTransport<rmcp::transport::streamable_http_client::StreamableHttpClientWorker<codex_rm
cp_client::http_client_adapter::StreamableHttpClientAdapter>>] error: Client error: HTTP request failed: http/request
failed: error sending request for url (https://chatgpt.com/backend-api/wham/apps), when send initialize request
⚠ MCP startup incomplete (failed: codex_apps)
AI 解决方案
🔍 错误翻译
- 模型元数据警告
原文:⚠ Model metadata for `deepseek-v4-pro` not found. Defaulting to fallback metadata; this can degrade performance and cause issues.
译文:⚠ 未找到模型 `deepseek-v4-pro` 的元数据。已回退至默认元数据;这可能导致性能下降并引发问题。
原文:⚠ MCP client for `codex_apps` failed to start: MCP startup failed: handshaking with MCP server failed: Send message error ... HTTP request failed: http/request failed: error sending request for url (https://chatgpt.com/backend-api/wham/apps), when send initialize request
译文:⚠ MCP客户端 `codex_apps` 启动失败:MCP启动失败:与MCP服务器握手失败:发送消息错误... HTTP请求失败:向地址 (https://chatgpt.com/backend-api/wham/apps) 发送请求时出错,错误发生在发送初始化请求阶段。
🎯 原因分析
主要错误是 MCP客户端启动失败,其根本原因是在与远程MCP服务器(地址为
https://chatgpt.com/backend-api/wham/apps)进行协议握手的初始阶段,HTTP请求发送失败。直接原因:网络层无法成功向指定的URL发送HTTP请求。
可能根源:
1. 网络连接问题:本地网络无法访问目标地址,可能由于防火墙、代理配置错误、DNS解析失败或目标服务器不可达。
2. 目标服务问题:
chatgpt.com 的后端服务 (/backend-api/wham/apps) 可能暂时不可用、已更换地址或需要特殊的网络权限。3. 配置或协议问题:客户端配置中的URL可能不正确,或客户端协议与服务器端不兼容,导致在握手阶段就被拒绝。
次要问题:
deepseek-v4-pro 的模型元数据缺失是一个配置加载警告,通常不会导致启动中断,但会影响该模型的正常调用和性能。💡 解决方案
请按顺序排查:*1. 优先解决MCP