get_job_run
Retrieve detailed information about a specific Databricks job execution using its run ID to monitor progress and analyze results.
Instructions
Get run details
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| run_id | Yes |
Implementation Reference
- tools/jobs.py:51-54 (handler)The implementation of the get_job_run MCP tool, which fetches job run details from the workspace client.
def get_job_run(ctx: Context, run_id: int) -> Dict[str, Any]: """Get run details""" w = get_workspace_client() return w.jobs.get_run(run_id=run_id).as_dict()