ai.mcpanalytics/analytics

data_query

Query analytics data for a Minter.io report. Returns CSV data (up to 100 rows). Use accounts_discovery to find report_id and field_discovery for valid tool_name + metric combinations. date_from / to_date: yyyy-mm-dd, defaults to last 30 days. sort / order: for *_detailed tools only.

Remote minter/analytics

Remote (network-hosted)

Other tools also called data_query? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "sort": {
      "type": "string",
      "description": "Sort field for *_detailed tools"
    },
    "order": {
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string"
    },
    "metric": {
      "type": "string",
      "description": "Metric name from field_discovery"
    },
    "to_date": {
      "type": "string",
      "description": "End date yyyy-mm-dd"
    },
    "date_from": {
      "type": "string",
      "description": "Start date yyyy-mm-dd"
    },
    "report_id": {
      "type": "string",
      "description": "Report ID from accounts_discovery"
    },
    "tool_name": {
      "type": "string",
      "description": "Tool name from field_discovery"
    }
  }
}