custom_jql
Execute custom JQL queries for advanced analytics and data analysis beyond standard Mixpanel reports, enabling tailored insights from event data.
Instructions
Run custom JQL (JSON Query Language) queries. Useful for advanced analytics and custom data analysis beyond standard reports.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | No | The Mixpanel project ID. Optional since it has a default. | |
script | Yes | The JQL script to execute |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "The Mixpanel project ID. Optional since it has a default.",
"type": "string"
},
"script": {
"description": "The JQL script to execute",
"type": "string"
}
},
"required": [
"script"
],
"type": "object"
}