get_model
Retrieve detailed information about a specific model using its unique ID from the Grok MCP Server, enabling efficient model management and operations.
Instructions
Get details about a specific model
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| model_id | Yes | The ID of the model to retrieve | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "model_id": {
      "description": "The ID of the model to retrieve",
      "type": "string"
    }
  },
  "required": [
    "model_id"
  ],
  "type": "object"
}