github / github/copilot-cli

Empty Input Schema Breaks Copilot CLI

未關閉
#1,825 1 則留言 10 個 reaction 已指派 0 人 在 GitHub 檢視
area:mcp area:tools
主要語言
Shell
星號
11.2k
分支
1.9k
平均合併
14 小時 16 分鐘
30 天內合併 PR
6

描述

### Describe the bug

Tools with no input parameters use an empty JSON Schema for their Input Schema. This causes Copilot CLI to reject the tool entirely and fail on **any** prompt when the MCP server is connected.

## Error from Copilot CLI:

```text
✘ Model call failed: {"message":"Invalid schema for function 'ai-game-developer-assets-prefab-save':
In context=(), object schema missing properties.","code":"invalid_function_parameters"}
(Request ID: D7FC:AD056:2DA15A3:3398963:69A8149D)
```

### Affected version

0.0.365 Commit: 76d0881

### Steps to reproduce the behavior

1. To have an MCP tool with this **Input Schema**:
```json
{
"type": "object",
"additionalProperties": false
}
```
2. Start `copilot`.
3. Type any prompt when connected to the MCP with the tool.

## Result
Copilot is stuck producing this error again and again. Nothing else happens, doesn't matter what prompt to type. Only adding an input argument into the input json schema of the tool resolves the problem.

### Sample (functional Input Schema)
```json
{
"type": "object",
"properties": {
"dummy": {
"type": "string"
}
},
"required": ["dummy"]
}
```

### Expected behavior

Copilot doesn't have the error about MCP tool with no arguments and can continue to operate and use it.

### Additional context

Seems like Copilot CLI requires every `object` schema to have a `properties` field. An empty object schema (with only `additionalProperties: false` and no `properties`) is rejected as invalid.

貢獻指南

開啟貢獻指南

評估

這個 Issue 還沒有評估資料。

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。