Redash MCP Server

execute-query

Execute a Redash query and return results

Input Schema

NameRequiredDescriptionDefault
parametersNoParameters to pass to the query (if any)
queryIdYesID of the query to execute

Input Schema (JSON Schema)

{ "properties": { "parameters": { "additionalProperties": true, "description": "Parameters to pass to the query (if any)", "type": "object" }, "queryId": { "description": "ID of the query to execute", "type": "number" } }, "required": [ "queryId" ], "type": "object" }