mcp_powerdrill_create_session
Initiate a data analysis session on the Powerdrill MCP Server by specifying session parameters, agent ID, job mode, and output language for AI-driven insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agent_id | No | The ID of the agent | DATA_ANALYSIS_AGENT |
job_mode | No | Job mode for the session | AUTO |
max_contextual_job_history | No | The maximum number of recent jobs retained as context for the next job | |
name | Yes | The session name, which can be up to 128 characters in length | |
output_language | No | The language in which the output is generated | AUTO |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"agent_id": {
"default": "DATA_ANALYSIS_AGENT",
"description": "The ID of the agent",
"enum": [
"DATA_ANALYSIS_AGENT"
],
"type": "string"
},
"job_mode": {
"default": "AUTO",
"description": "Job mode for the session",
"enum": [
"AUTO",
"DATA_ANALYTICS"
],
"type": "string"
},
"max_contextual_job_history": {
"default": 10,
"description": "The maximum number of recent jobs retained as context for the next job",
"maximum": 10,
"minimum": 0,
"type": "number"
},
"name": {
"description": "The session name, which can be up to 128 characters in length",
"type": "string"
},
"output_language": {
"default": "AUTO",
"description": "The language in which the output is generated",
"enum": [
"AUTO",
"EN",
"ES",
"AR",
"PT",
"ID",
"JA",
"RU",
"HI",
"FR",
"DE",
"VI",
"TR",
"PL",
"IT",
"KO",
"ZH-CN",
"ZH-TW"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}