get_hex_run_status
Retrieve the status of a specific project run by providing the project and run UUIDs. The response returns detailed run status in JSON format for monitoring and management.
Instructions
Get the status of a project run.
Args:
project_id: The UUID of the Hex project
run_id: The UUID of the run
Returns:
JSON string with run status details
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ||
| run_id | Yes |
Implementation Reference
- src/hex_mcp/server.py:175-188 (handler)Handler function decorated with @mcp.tool() that implements the get_hex_run_status tool by querying the Hex API for the run status of a given project and run ID.@mcp.tool() async def get_hex_run_status(project_id: str, run_id: str) -> str: """Get the status of a project run. Args: project_id: The UUID of the Hex project run_id: The UUID of the run Returns: JSON string with run status details """ status = await hex_request("GET", f"/projects/{project_id}/runs/{run_id}") return status