collect_feedback
Enables AI assistants to collect user feedback interactively by accepting text and image responses. Integrates with 'MCP Feedback Collector' to streamline feedback gathering for AI-generated work summaries.
Instructions
收集用户反馈的交互式工具
AI可以汇报完成的工作内容,用户可以提供文字和/或图片反馈
Args:
work_summary: AI完成的工作内容汇报
timeout_seconds: 对话框超时时间(秒),默认300秒(5分钟)
Returns:
包含用户反馈内容的列表,可能包含文本和图片
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timeout_seconds | No | ||
work_summary | No |
Input Schema (JSON Schema)
{
"properties": {
"timeout_seconds": {
"default": 300,
"title": "Timeout Seconds",
"type": "integer"
},
"work_summary": {
"default": "",
"title": "Work Summary",
"type": "string"
}
},
"title": "collect_feedbackArguments",
"type": "object"
}