Skip to main content
Glama

model_status

Check the status of model import or export operations to monitor progress and ensure completion in AI fine-tuning workflows.

Instructions

Check the status of a model import or export operation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
model_idYesModel ID (UUID)

Implementation Reference

  • The getUserModelStatus method in the client class performs the actual API request to retrieve the model status.
    async getUserModelStatus(modelId: string): Promise<any> {
      return this.request("GET", `/api/v1/user_models/${modelId}/status`);
    }
  • src/mcp.ts:355-364 (registration)
    The registration of the 'model_status' tool in the MCP server definitions, including its input schema.
    name: "model_status",
    description:
      "Check the status of a model import or export operation.",
    inputSchema: {
      type: "object" as const,
      properties: {
        model_id: { type: "string", description: "Model ID (UUID)" },
      },
      required: ["model_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