report_problem
诊断与系统 · macOS · Windows
效果: 发送. 状态: 受限可用.
“受限可用”表示工具可能取决于版本、平台、权限、账户或配置,并不表示它在所有安装中都已启用。
macOS
用途
向 LMCP 团队发送问题报告、功能请求或集成请求——适用于用户想报告错误、请求新功能,或希望支持 LMCP 尚未覆盖的应用。若不传 confirm=true,则返回将要发送的匿名负载预览(版本、OS、权限状态以及近期工具名称/错误类型代码——绝不包含参数、消息或个人数据);传入 confirm=true 后才会提交并返回 case_id。type='problem'(默认)用于报告错误,type='feature' 用于请求新功能,type='integration' 用于请求支持尚未支持的应用。
必填输入
此平台的架构未声明必填输入,但仍可能存在可选选择器或运行时要求。
权限与确认
架构声明了明确的确认参数。请检查预览,并按此平台的契约授权实际操作。
- 仅使用用户在此平台上授权的应用、账户和资源。请查阅此工具针对平台的说明,以了解其连接和权限要求;本目录不声称需要额外的 OAuth 范围或操作系统授权。
英文规范技术架构 — macOS
{
"properties": {
"confirm": {
"description": "Must be true to submit the report. Without it, shows a preview.",
"type": "boolean"
},
"description": {
"description": "Required for type=feature or integration: what the user wants.",
"type": "string"
},
"error_message": {
"description": "For type=problem: verbatim error string from the failed tool.",
"type": "string"
},
"expected": {
"description": "What you or the user expected to happen.",
"type": "string"
},
"report_type": {
"description": "'problem' (default) | 'feature' | 'integration'",
"type": "string"
},
"symptom": {
"description": "Required for type=problem: what is broken, in your own words.",
"type": "string"
},
"tool_attempted": {
"description": "For type=problem: name of the LMCP tool that failed.",
"type": "string"
},
"user_request": {
"description": "What the user originally asked the AI to do.",
"type": "string"
}
},
"required": [],
"type": "object"
}文档示例
report_problem 的文档示例。请勿执行此示例。所示参数属于虚构数据集;在实际调用前,请解析真实标识符并获得授权。
{
"confirm": false,
"description": "Add a filter for unread messages.",
"report_type": "feature"
}Windows
用途
向 LMCP 团队报告问题、功能请求或集成请求。
必填输入
此平台的架构未声明必填输入,但仍可能存在可选选择器或运行时要求。
权限与确认
架构未声明明确的确认参数。这并不代表可以未经许可操作;请检查效果并取得授权。
- 仅使用用户在此平台上授权的应用、账户和资源。请查阅此工具针对平台的说明,以了解其连接和权限要求;本目录不声称需要额外的 OAuth 范围或操作系统授权。
英文规范技术架构 — Windows
{
"properties": {
"description": {
"description": "Alias source for `message` when `message` is not sent — the Mac schema's field for type=feature/integration.",
"type": "string"
},
"error_message": {
"description": "Folded into `message` when `message` is not sent — verbatim error from the failed tool.",
"type": "string"
},
"expected": {
"description": "Folded into `message` when `message` is not sent — what was expected to happen.",
"type": "string"
},
"message": {
"description": "Description of the problem or request",
"type": "string"
},
"report_type": {
"description": "Alias for `type` — the name the cloud catalog (Mac) advertises ('problem'|'feature'|'integration').",
"type": "string"
},
"symptom": {
"description": "Alias source for `message` when `message` is not sent — the Mac schema's field for type=problem.",
"type": "string"
},
"type": {
"description": "bug, feature, or integration",
"enum": [
"bug",
"feature",
"integration"
],
"type": "string"
}
},
"type": "object"
}文档示例
report_problem 的文档示例。请勿执行此示例。所示参数属于虚构数据集;在实际调用前,请解析真实标识符并获得授权。
{
"description": "Add a filter for unread messages.",
"report_type": "feature"
}