Datadog

analyze_table

QUICK statistical snapshot for ONE table — row count, null rates, cardinality, numeric min/max/avg, date ranges. Optionally drill into a specific column. Use this for a fast at-a-glance read. Use `data_profile` instead when the user wants a FULL quality report including PII detection and a health score.

Remote thinair/data

Other tools also called analyze_table? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "table": {
      "type": "string",
      "description": "Table name to analyze"
    },
    "column": {
      "type": "string",
      "description": "Specific column to deep-analyze"
    },
    "connection": {
      "type": "string",
      "description": "Target connection name from this tenant's inventory. Call `list_connections` to see every name + dialect, then match semantically to the user's intent (e.g. 'analytics' → a connection named `*-analytics-*`; 'prod' → a connection with `prod-` prefix). If the user didn't specify, use the tenant's default (first added). Do not invent names — resolve from `list_connections` output."
    }
  }
}
          

Provider

Datadog →