get_download_url
Retrieve the download URL for a specific AI model version by providing its ID, enabling direct access to the model file on Civitai's platform via the MCP server.
Instructions
Get the download URL for a specific model version
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modelVersionId | Yes | The ID of the model version to get download URL for |
Input Schema (JSON Schema)
{
"properties": {
"modelVersionId": {
"description": "The ID of the model version to get download URL for",
"type": "number"
}
},
"required": [
"modelVersionId"
],
"type": "object"
}