mcp_powerdrill_create_job
Analyze datasets and generate insights by submitting natural language questions or prompts using a structured job creation tool for efficient AI-driven data exploration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset_id | Yes | The ID of the dataset to analyze | |
datasource_ids | No | Optional array of specific data source IDs within the dataset to analyze | |
job_mode | No | The job mode (default: AUTO) | AUTO |
output_language | No | The language for the output (default: AUTO) | AUTO |
question | Yes | The natural language question or prompt to analyze the data | |
session_id | Yes | Session ID to group related jobs | |
stream | No | Whether to stream the results (default: false) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dataset_id": {
"description": "The ID of the dataset to analyze",
"type": "string"
},
"datasource_ids": {
"description": "Optional array of specific data source IDs within the dataset to analyze",
"items": {
"type": "string"
},
"type": "array"
},
"job_mode": {
"default": "AUTO",
"description": "The job mode (default: AUTO)",
"type": "string"
},
"output_language": {
"default": "AUTO",
"description": "The language for the output (default: AUTO)",
"type": "string"
},
"question": {
"description": "The natural language question or prompt to analyze the data",
"type": "string"
},
"session_id": {
"description": "Session ID to group related jobs",
"type": "string"
},
"stream": {
"default": false,
"description": "Whether to stream the results (default: false)",
"type": "boolean"
}
},
"required": [
"question",
"dataset_id",
"session_id"
],
"type": "object"
}