get_model
Retrieve detailed information about a specific AI model using its unique ID. Enables users to access model details through the Civitai MCP Server for informed AI assistant interactions.
Instructions
Get detailed information about a specific model by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modelId | Yes | The ID of the model to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"modelId": {
"description": "The ID of the model to retrieve",
"type": "number"
}
},
"required": [
"modelId"
],
"type": "object"
}