Skip to main content
Glama

job_status

Monitor fine-tuning job progress by checking current status, GPU usage, estimated charges, remaining balance, and delivery updates.

Instructions

Get live status of a fine-tuning job including current status, GPU minutes used, estimated charges, remaining balance, and delivery progress. Use this to monitor a running job.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYesJob ID

Implementation Reference

  • MCP tool handler for 'job_status' which calls the underlying TuningEnginesClient method.
    case "job_status":
      result = await client.getJobStatus(args!.job_id as string);
      break;
  • The API client implementation that performs the network request for 'job_status'.
    async getJobStatus(jobId: string): Promise<any> {
      return this.request("GET", `/api/v1/jobs/${jobId}/status`);
    }
  • Tool definition and input schema for the 'job_status' MCP tool.
      name: "job_status",
      description:
        "Get live status of a fine-tuning job including current status, GPU minutes used, estimated charges, remaining balance, and delivery progress. Use this to monitor a running job.",
      inputSchema: {
        type: "object" as const,
        properties: {
          job_id: { type: "string", description: "Job ID" },
        },
        required: ["job_id"],
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cerebrixos-org/tuning-engines-cli'

If you have feedback or need assistance with the MCP directory API, please join our Discord server