submit_product_feedback
Submit a product feedback activity draft to the Activity Reporting MCP Server. Capture details like title, description, activity date, product details, and time spent for efficient reporting.
Instructions
Submit a product feedback activity draft
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activityDate | Yes | Participation Date (YYYY-MM-DD format) | |
additionalInfo | No | Additional information (optional) | |
contentType | Yes | Content type | |
description | Yes | Description | |
metrics | Yes | ||
private | No | Do you want to make this activity private? (optional) | |
productDescription | Yes | What product was it about? | |
tags | No | Tags (optional) | |
title | Yes | Title |
Input Schema (JSON Schema)
{
"properties": {
"activityDate": {
"description": "Participation Date (YYYY-MM-DD format)",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"additionalInfo": {
"description": "Additional information (optional)",
"maxLength": 2000,
"type": "string"
},
"contentType": {
"description": "Content type",
"enum": [
"Early access program",
"Product feedback session"
],
"type": "string"
},
"description": {
"description": "Description",
"maxLength": 2000,
"type": "string"
},
"metrics": {
"properties": {
"timeSpent": {
"description": "Time spent (in minutes)",
"minimum": 1,
"type": "integer"
}
},
"required": [
"timeSpent"
],
"type": "object"
},
"private": {
"description": "Do you want to make this activity private? (optional)",
"type": "boolean"
},
"productDescription": {
"description": "What product was it about?",
"maxLength": 500,
"type": "string"
},
"tags": {
"description": "Tags (optional)",
"items": {
"type": "string"
},
"minItems": 0,
"type": "array"
},
"title": {
"description": "Title",
"maxLength": 200,
"minLength": 3,
"type": "string"
}
},
"required": [
"title",
"description",
"activityDate",
"contentType",
"productDescription",
"metrics"
],
"type": "object"
}