getv2askanythinggeneratebrief
Generate concise account or deal briefs using workspace ID, CRM entity ID, and time period inputs to streamline business insights for gong-mcp.
Instructions
Generate account/deal brief
Input Schema
Name | Required | Description | Default |
---|---|---|---|
brief-name | Yes | ||
crm-entity-id | Yes | ||
entity-type | Yes | ||
from-date-time | No | ||
period-type | Yes | ||
to-date-time | No | ||
workspace-id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"brief-name": {
"type": "string"
},
"crm-entity-id": {
"type": "string"
},
"entity-type": {
"enum": [
"Deal",
"Account"
],
"type": "string"
},
"from-date-time": {
"format": "date-time",
"type": "string"
},
"period-type": {
"type": "string"
},
"to-date-time": {
"format": "date-time",
"type": "string"
},
"workspace-id": {
"type": "string"
}
},
"required": [
"workspace-id",
"brief-name",
"entity-type",
"crm-entity-id",
"period-type"
],
"type": "object"
}