Powerdrill MCP Server

Official

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

NameRequiredDescriptionDefault
agent_idNoThe ID of the agentDATA_ANALYSIS_AGENT
job_modeNoJob mode for the sessionAUTO
max_contextual_job_historyNoThe maximum number of recent jobs retained as context for the next job
nameYesThe session name, which can be up to 128 characters in length
output_languageNoThe language in which the output is generatedAUTO

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" }
ID: 4yflqqa1xr