create-table-config
Generate table configurations for Apache Pinot using the MCP server, enabling streamlined setup by inputting JSON and optional validation skips.
Instructions
Create table configuration
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| tableConfigJson | Yes | ||
| validationTypesToSkip | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "tableConfigJson": {
      "type": "string"
    },
    "validationTypesToSkip": {
      "type": "string"
    }
  },
  "required": [
    "tableConfigJson"
  ],
  "type": "object"
}