Clothes on Model is a image-to-image AI wrapper by modelrunner. On ModelRunner it runs through a REST API or via MCP from any AI assistant with pay-per-use pricing.
POST https://queue.modelrunner.run/modelrunner/clothes-on-model
cURL
# Submit a request to the queue. Input fields go at the top level of the
# body. The optional reserved "metadata" object holds your own flat string
# tags — stored on the request, never sent to the model; filter later with
# GET https://queue.modelrunner.run/requests?metadata=<url-encoded JSON>.
curl -X POST https://queue.modelrunner.run/modelrunner/clothes-on-model \
-H "Authorization: Key $MRUN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"hat_image": "https://media.modelrunner.ai/YCzpHPF8RLQRM5Xu-hat.webp",
"top_image": "https://media.modelrunner.ai/VGx9FxtChQ3WD41W-tshirt-2.webp",
"shoe_image": "https://media.modelrunner.ai/J4vvUeomPe9JpPrl-shoes.jpeg",
"environment": "lake side",
"model_image": "https://media.modelrunner.ai/nFrUaBDrQ9AJcc9c-woman-model.webp",
"num_outputs": 3,
"aspect_ratio": "9:16",
"bottom_image": "https://media.modelrunner.ai/xE4aCKZYmbxeybMg-bottom.png",
"metadata": {
"project": "my-project"
}
}'
# → { "request_id": "...", "status_url": "...", "response_url": "..." }
# Poll status_url until "COMPLETED", then fetch the result
curl "https://queue.modelrunner.run/modelrunner/clothes-on-model/requests/$REQUEST_ID/status" \
-H "Authorization: Key $MRUN_API_KEY"
curl "https://queue.modelrunner.run/modelrunner/clothes-on-model/requests/$REQUEST_ID" \
-H "Authorization: Key $MRUN_API_KEY"
Point Claude Code, Claude Desktop, Cursor, or any MCP client at the ModelRunner MCP server and Clothes on Model becomes a tool your assistant can call directly — it authorizes via OAuth (no API key in config) and runs this wrapper with the run_model tool using the endpoint modelrunner/clothes-on-model.
claude mcp add --transport http modelrunner https://mcp.modelrunner.run/mcp
Then ask your assistant, for example: “Run modelrunner/clothes-on-model on ModelRunner to generate image”. MCP setup guide.
Wrapper Details
Model Details
Clothes-on-Model composes believable, on-model product photos for fashion catalogs and listings. Supply reference images for garments and accessories (and optionally a model photo). The system renders accurate fit, drape, and scale while preserving product design and color.