analytics-chart-list
Retrieve analytics chart lists for A/B test data with customizable filters like chart type, page size, and search keywords using Hackle API’s MCP server.
Instructions
fetch data analytics chart list.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chartType | No | ||
pageNumber | No | ||
pageSize | No | ||
searchKeyword | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chartType": {
"enum": [
"FUNNEL",
"DATA_INSIGHT",
"RETENTION",
"USER_PATH"
],
"type": "string"
},
"pageNumber": {
"default": 1,
"type": "number"
},
"pageSize": {
"default": 100,
"type": "number"
},
"searchKeyword": {
"type": "string"
}
},
"type": "object"
}