Hacktoberfest 2026:维护者为十月标记出来的 issue,仍然开放、适合新手。 浏览 Hacktoberfest issue

Non-interactive MCP tool call hangs after progress notification until idle timeout

未关闭
#4,910 3 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
4/5
预计耗时
3-5 天
新手友好度
52/100
Issue 类型
缺陷
描述清晰度
基本清楚
活跃度
活跃
技术栈
azure, rust
领域
api, cli, networking

调研方向

Reproduce the hang in non-interactive mode with -p, --no-ask-user, --stream off, Azure MCP, and debug logging. Start with the rust:mcp::client request queue and rust:rmcp::service progress-notification path, then compare the timeline with the direct client. Done means the tool result reaches the model, or a bounded timeout returns a structured tool error instead of an idle WebSocket close.

由索引模型根据 Issue 内容生成。

描述

triage

Description

In non-interactive Copilot CLI, an already-discovered Azure MCP tool call can hang after delivering its initial progress notification. No tool result is delivered, and the MCP WebSocket closes five minutes later with idle timeout.

The identical tool and payload succeed immediately when invoked directly through another MCP client (VS Code), which suggests the failure is in the Copilot CLI MCP request/session path rather than the Azure best-practices command itself.

Environment

  • Windows
  • GitHub Copilot CLI 1.0.87-0 (current latest reported by copilot update)
  • @azure/mcp 3.0.0-beta.45+d6f8a6f07e9b3b4c0b36176ae2fc39aafe6a5f05
  • Non-interactive mode using -p, --no-ask-user, --stream off, and debug logging

Tool call

{
  "name": "azure-get_azure_bestpractices",
  "arguments": {
    "intent": "Deploy the claimed Flask research app to Azure App Service using Azure CLI in the assigned subscription, resource group, and preferred region.",
    "learn": true
  }
}

Reproduction

  1. Start Copilot CLI in non-interactive mode with Azure MCP available and debug logging enabled.
  2. Give it an Azure App Service deployment task that causes the model to call azure-get_azure_bestpractices with learn: true.
  3. Observe that the tool emits its initial progress event but never returns a result.

This has occurred in three independent agent runs. Two used different application frameworks/personas, so it is not tied to Flask prompt wording.

CLI log timeline

18:27:42.559Z [DEBUG] [rust:mcp::client] MCP request enqueued {"request_id":"Number(2)"}
18:27:42.618Z [INFO]  [rust:rmcp::service] received notification ... message: Some("Learning about get_azure_bestpractices capabilities...")
18:32:41.840Z [DEBUG] [rust:log] Received close frame ... reason: "idle timeout"

There is no completion response or actionable timeout surfaced to the model between the progress event and socket closure.

Direct-client control

I invoked the same Azure MCP tool outside Copilot CLI, with the exact payload above, twice. Both calls returned immediately:

{
  "status": 200,
  "message": "",
  "results": ["...deployment best-practices guidance..."],
  "duration": 0
}

This also confirms that the command is available and that learn: true is accepted.

Expected behavior

Copilot CLI should deliver the MCP tool result to the model. If the server or transport does not complete within a bounded request timeout, the CLI should return a structured tool error so the model can continue with a fallback path.

Actual behavior

The model remains blocked on the tool call. The only visible event is the initial progress notification; five minutes later the WebSocket closes for idle timeout. In unattended runs this leaves the host silent until an external watchdog terminates it.

Related issues

  • #4678 concerns MCP server startup blocking; this occurs after discovery and after a tool-call progress notification.
  • #3257 concerns reuse of a dead pooled HTTP connection after idle; this occurs on a newly issued request that successfully begins delivering progress.

Full sanitized debug logs can be provided if useful.

主要语言
Shell
星标
11.2k
派生
1.9k
平均合并
14 小时 16 分钟
30 天内合并 PR
6

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

github/copilot-cli 的其他 Issue

查看 github/copilot-cli 的全部 Issue

相似的 Issue

更多 Shell/Bash Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。