get_job
Retrieve detailed information about a Databricks job by specifying its job ID to monitor status, configurations, and execution history.
Instructions
Get job details
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
Implementation Reference
- tools/jobs.py:22-26 (handler)The get_job tool is defined and implemented here using the @mcp.tool decorator. It uses the workspace client to retrieve job details by job_id.
@mcp.tool def get_job(ctx: Context, job_id: int) -> Dict[str, Any]: """Get job details""" w = get_workspace_client() return w.jobs.get(job_id=job_id).as_dict()