run_hex_project
Execute Hex projects by providing project ID, optional input parameters, and option to update published results. Returns JSON with run details via the Hex API MCP Server.
Instructions
Run a Hex project.
Args:
project_id: The UUID of the Hex project to run
input_params: Optional input parameters for the project
update_published_results: Whether to update published results
Returns:
JSON string with run details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input_params | No | ||
project_id | Yes | ||
update_published_results | No |
Input Schema (JSON Schema)
{
"properties": {
"input_params": {
"default": null,
"title": "Input Params",
"type": "object"
},
"project_id": {
"title": "Project Id",
"type": "string"
},
"update_published_results": {
"default": false,
"title": "Update Published Results",
"type": "boolean"
}
},
"required": [
"project_id"
],
"title": "run_hex_projectArguments",
"type": "object"
}