get_pipeline_analytics
Analyze pipeline performance by retrieving detailed metrics and insights based on specified pipeline ID and date ranges within Kommo CRM MCP Server.
Instructions
Get analytics for a specific pipeline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date_from | No | Start date (YYYY-MM-DD) | |
date_to | No | End date (YYYY-MM-DD) | |
pipeline_id | Yes | ID of the pipeline |
Input Schema (JSON Schema)
{
"properties": {
"date_from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"date_to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
},
"pipeline_id": {
"description": "ID of the pipeline",
"type": "number"
}
},
"required": [
"pipeline_id"
],
"type": "object"
}