set_sd_model
Define the active Stable Diffusion model for text-to-image generation and image upscaling within the Image Generation MCP Server by specifying the model name.
Instructions
Set the active Stable Diffusion model
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| model_name | Yes | Name of the model to set as active | 
Input Schema (JSON Schema)
{
  "properties": {
    "model_name": {
      "description": "Name of the model to set as active",
      "type": "string"
    }
  },
  "required": [
    "model_name"
  ],
  "type": "object"
}