cancel_hex_run
Terminates an active Hex project run by specifying the project and run UUIDs via the Hex API MCP Server, ensuring efficient project management.
Instructions
Cancel a running project.
Args:
project_id: The UUID of the Hex project
run_id: The UUID of the run to cancel
Returns:
Success message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | ||
run_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
},
"run_id": {
"title": "Run Id",
"type": "string"
}
},
"required": [
"project_id",
"run_id"
],
"title": "cancel_hex_runArguments",
"type": "object"
}