Landscape Redesign is a image-to-image AI wrapper by roomix. 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/roomix/landscape-redesign
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/roomix/landscape-redesign \
-H "Authorization: Key $MRUN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"sky": "clear",
"color": "forest-inspired",
"style": "japanese-zen",
"season": "autumn",
"daylight": "sunset",
"file_url": "https://media.modelrunner.ai/zI3AEchYMetGS9pk-source-8CFEE305-8A0D-4D19-9772-D6A25595FAB7.jpg",
"creativity": "balanced",
"creativity_level": 0.7,
"metadata": {
"project": "my-project"
}
}'
# → { "request_id": "...", "status_url": "...", "response_url": "..." }
# Poll status_url until "COMPLETED", then fetch the result
curl "https://queue.modelrunner.run/roomix/landscape-redesign/requests/$REQUEST_ID/status" \
-H "Authorization: Key $MRUN_API_KEY"
curl "https://queue.modelrunner.run/roomix/landscape-redesign/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 Landscape Redesign 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 roomix/landscape-redesign.
claude mcp add --transport http modelrunner https://mcp.modelrunner.run/mcp
Then ask your assistant, for example: “Run roomix/landscape-redesign on ModelRunner to generate image”. MCP setup guide.
Wrapper Details
Model Details
Reimagine an outdoor space from one photo. Pick a garden style, color palette, daylight, season, and sky, and the wrapper composes a detailed prompt for the underlying image-edit model. Use `prompt` for additional free-text guidance. Designed for landscape-flavored variants of the same style enum used by the room-redesign wrapper, so the same UI can drive both.