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

MCP `text/plain` `resource.blob` results reach the model as empty output

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

还没有人认领这个 Issue。

评估

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

调研方向

Start with nodejs/src/types.ts at convertMcpCallToolResult and compare how resource.text enters textResultForLlm with how resource.blob enters binaryResultsForLlm. Run the mcp-text-blob-repro.mjs server with the three commands to confirm the controls, then add coverage for direct text, resource.text, and text/plain resource.blob; done means the blob's decoded text is visible to the model without breaking binary handling.

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

描述

triage
Describe the bug

When an MCP tool returns a successful embedded resource containing valid base64-encoded
UTF-8 text in resource.blob with mimeType: "text/plain", Copilot CLI does not expose
that text to the model. The model receives empty or unusable tool output and cannot quote
the returned nonce.

Two control representations of the same kind of text work:

MCP result representation Result
Direct { type: "text", text: ... } Model receives usable text and can quote the nonce
Embedded resource.text Model receives usable text and can quote the nonce
Embedded resource.blob with mimeType: "text/plain" Tool succeeds, but the model cannot read the nonce

This is not specific to large output or to one model. It reproduces with a tiny randomized
UTF-8 string and with both GPT-6 Astra and GPT-5.6 Sol.

A fresh run on Copilot CLI 1.0.87-0 reproduced the failure on both models. The direct
text and resource.text controls remained usable.

Public SDK source shows the relevant representation boundary:
convertMcpCallToolResult
appends resource.text to textResultForLlm, while every resource.blob is placed in
binaryResultsForLlm as a resource, regardless of MIME type. This establishes that
resource.text and resource.blob enter different result channels before provider
serialization; the textual blob is not subsequently delivered as usable model input.

The MCP schema permits BlobResourceContents to carry the resource's optional MIME type
without restricting it to image formats:
ResourceContents / BlobResourceContents.

Affected version

GitHub Copilot CLI 1.0.87-0

Steps to reproduce the behavior
  1. Save the following dependency-free Node.js stdio MCP server as
    mcp-text-blob-repro.mjs:
mcp-text-blob-repro.mjs
import { randomUUID } from "node:crypto";
import { createInterface } from "node:readline";

const tools = [
  {
    name: "direct_text",
    description: "Return a unique UTF-8 nonce as ordinary MCP text content.",
    inputSchema: { type: "object", properties: {}, additionalProperties: false },
  },
  {
    name: "resource_text",
    description: "Return a unique UTF-8 nonce in an embedded resource.text field.",
    inputSchema: { type: "object", properties: {}, additionalProperties: false },
  },
  {
    name: "resource_blob",
    description:
      "Return a unique UTF-8 nonce as base64 resource.blob with mimeType text/plain.",
    inputSchema: { type: "object", properties: {}, additionalProperties: false },
  },
];

function write(message) {
  process.stdout.write(`${JSON.stringify(message)}\n`);
}

function toolResult(name) {
  const nonce = process.env.REPRO_NONCE || randomUUID();
  const expected = `${name}:${nonce}`;
  process.stderr.write(`[repro] ${name} expected: ${expected}\n`);

  if (name === "direct_text") {
    return {
      content: [{ type: "text", text: expected }],
      isError: false,
    };
  }

  if (name === "resource_text") {
    return {
      content: [{
        type: "resource",
        resource: {
          uri: "memory://copilot-text-blob-repro/resource-text.txt",
          mimeType: "text/plain",
          text: expected,
        },
      }],
      isError: false,
    };
  }

  if (name === "resource_blob") {
    return {
      content: [{
        type: "resource",
        resource: {
          uri: "memory://copilot-text-blob-repro/resource-blob.txt",
          mimeType: "text/plain",
          blob: Buffer.from(expected, "utf8").toString("base64"),
        },
      }],
      isError: false,
    };
  }

  throw new Error(`Unknown tool: ${name}`);
}

const input = createInterface({ input: process.stdin, crlfDelay: Infinity });

input.on("line", (line) => {
  if (!line.trim()) return;

  let request;
  try {
    request = JSON.parse(line);
  } catch {
    return;
  }

  if (request.id === undefined) return;

  try {
    let result;
    switch (request.method) {
      case "initialize":
        result = {
          protocolVersion: request.params?.protocolVersion ?? "2025-06-18",
          capabilities: { tools: {} },
          serverInfo: { name: "copilot-text-blob-repro", version: "1.0.0" },
        };
        break;
      case "ping":
        result = {};
        break;
      case "tools/list":
        result = { tools };
        break;
      case "tools/call":
        result = toolResult(request.params?.name);
        break;
      default:
        write({
          jsonrpc: "2.0",
          id: request.id,
          error: { code: -32601, message: `Method not found: ${request.method}` },
        });
        return;
    }

    write({ jsonrpc: "2.0", id: request.id, result });
  } catch (error) {
    write({
      jsonrpc: "2.0",
      id: request.id,
      error: {
        code: -32602,
        message: error instanceof Error ? error.message : String(error),
      },
    });
  }
});
  1. In the same directory, save this as .mcp.json:
{
  "mcpServers": {
    "text-blob-repro": {
      "type": "stdio",
      "command": "node",
      "args": ["./mcp-text-blob-repro.mjs"],
      "env": {
        "REPRO_NONCE": "6f76fba4-4639-4ee2-8e95-c6cdd2e5b80d"
      },
      "tools": ["*"]
    }
  }
}
  1. From that directory, run these three commands. --available-tools prevents the model
    from reading .mcp.json or using another tool to discover the configured nonce:
copilot -p 'Call the direct_text tool exactly once. Return only the UUID suffix after the colon, with no explanation.' `
  --model gpt-5.6-sol `
  --additional-mcp-config '@.mcp.json' `
  --disable-builtin-mcps `
  --available-tools text-blob-repro-direct_text `
  --allow-all-tools
copilot -p 'Call the resource_text tool exactly once. Return only the UUID suffix after the colon, with no explanation.' `
  --model gpt-5.6-sol `
  --additional-mcp-config '@.mcp.json' `
  --disable-builtin-mcps `
  --available-tools text-blob-repro-resource_text `
  --allow-all-tools
copilot -p 'Call the resource_blob tool exactly once. Return only the UUID suffix after the colon, with no explanation. If no content is visible, reply exactly ATTACHMENT_UNAVAILABLE.' `
  --model gpt-5.6-sol `
  --additional-mcp-config '@.mcp.json' `
  --disable-builtin-mcps `
  --available-tools text-blob-repro-resource_blob `
  --allow-all-tools

Observed:

  • direct_text: 6f76fba4-4639-4ee2-8e95-c6cdd2e5b80d
  • resource_text: 6f76fba4-4639-4ee2-8e95-c6cdd2e5b80d
  • resource_blob: tool execution succeeds, but the nonce is absent from model-visible
    output and the model returns ATTACHMENT_UNAVAILABLE.

Replacing --model gpt-5.6-sol with --model gpt-6-astra reproduces the
resource_blob failure.

Expected behavior

For a successful embedded resource with an allowlisted textual MIME type such as
text/plain, Copilot CLI should make valid decoded UTF-8 content available to the model
through the normal text-result path (including the existing bounded large-output handling).

If the content cannot be safely decoded or supported, the tool result should fail
explicitly or contain a clear model-visible diagnostic. A successful tool execution should
not silently become empty model-visible output while usable text is present.

Additional context
  • The failing resource contains valid base64 and valid UTF-8. Equivalent inline text and
    resource.text controls succeed.
  • The failure occurs with a tiny nonce, so it is separate from large-output truncation.
  • In the SDK-mediated path, the blob reaches the runtime's binary-result/session-asset
    representation, but neither tested model receives usable text. The native MCP path fails
    the same way, so this is not only an SDK forwarding issue.
  • Impact: MCP integrations that return file or document content as a textual blob can
    report a successful read while the model receives no content. The agent may then
    misdiagnose the result as a missing attachment, empty file, or permissions problem.
  • Related but distinct:
    • github/copilot-cli#4536 covers MCP image content blocks.
    • github/copilot-cli#4600 covers MCP images dropped by BYOK provider assembly.
    • github/copilot-cli#1732 covered truncation of large MCP text before the existing
      large-output-to-file mechanism; it was fixed in CLI 1.0.9.
    • github/copilot-sdk#1644 covered SDK language bindings failing to forward binary tool
      results to the runtime; it is fixed, and the current reproduction reaches the next
      runtime stage.

A possible fix direction, rather than a required implementation:

  1. Base64-decode only explicitly allowlisted textual MIME types.
  2. Enforce a decoded-size cap and strict UTF-8 validation.
  3. Route valid decoded text through textResultForLlm or an equivalent supported
    model-visible text/file path.
  4. Keep binary attachment handling for MIME types and providers that support it.
  5. Apply the same normalization to native MCP and SDK/external-tool results.
  6. Add integration coverage for direct text, resource.text, and text/plain
    resource.blob across both provider/model paths.
主要语言
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 摘要。