OpenArt MCP Setup Skill
Connect all OpenArt models (17+ image/video models) to Claude, ChatGPT, and Cursor via MCP.
Quick Setup (Windows)
# 1. Install OpenArt CLI
irm https://raw.githubusercontent.com/OpenArt-AI/cli/main/install.ps1 | iex
# 2. Add to PATH for current session
$env:PATH += ";C:\Users\USER\AppData\Local\Programs\openart\bin"
# 3. Login to OpenArt
openart login
Configure MCP for All AI Tools
Claude (~/.config/claude/mcp.json)
{
"mcpServers": {
"openart": {
"url": "https://mcp.openart.ai/mcp"
}
}
}
Cursor (~/.cursor/mcp.json)
{
"mcpServers": {
"openart": {
"url": "https://mcp.openart.ai/mcp"
}
}
}
ChatGPT (~/AppData/Roaming/ChatGPT/mcp.json)
{
"mcpServers": {
"openart": {
"url": "https://mcp.openart.ai/mcp"
}
}
}
Available Models (17 Total)
Image Models
| Model ID |
Name |
Capabilities |
nano-banana-2 |
Nano Banana 2 |
text2image, image2image |
nano-banana-pro |
Nano Banana Pro |
text2image, image2image |
nano-banana-2-lite |
Nano Banana 2 Lite |
text2image, image2image |
gpt-image-2 |
GPT Image 2 |
text2image, image2image |
byte-plus-seedream-4-5 |
Seedream 4.5 |
text2image, image2image |
byte-plus-seedream-5-pro |
Seedream 5 Pro |
text2image, image2image |
byte-plus-seedream-5-lite |
Seedream 5 Lite |
text2image, image2image |
kling-3-omni |
Kling 3 Omni |
text2image, image2image |
Video Models
| Model ID |
Name |
Capabilities |
grok-imagine-1-5 |
Grok Imagine 1.5 |
text2video, image2video |
gemini-omni-flash |
Gemini Omni Flash |
text2video, image2video, element2video |
gemini-omni-1-1-flash |
Gemini Omni 1.1 Flash |
text2video, image2video, element2video |
kling-3-omni |
Kling 3 Omni |
text2video, image2video, element2video |
byte-plus-seedance-2 |
Seedance 2.0 |
text2video, image2video, element2video |
byte-plus-seedance-2-fast |
Seedance 2.0 Fast |
text2video, image2video, element2video |
byte-plus-seedance-2-mini |
Seedance 2.0 Mini |
text2video, image2video, element2video |
byte-plus-seedance-2-5 |
Seedance 2.5 |
text2video, image2video, element2video |
wan2-7 |
Wan 2.7 |
text2video, image2video, element2video |
pixverseV6 |
PixVerse V6 |
text2video, image2video |
Hybrid (Image + Video)
| Model ID |
Name |
Capabilities |
smart-shot |
Smart Shot |
preview-shot-plan, generate-shot-video |
Usage
Via CLI
$env:PATH += ";C:\Users\USER\AppData\Local\Programs\openart\bin"
# Generate image
openart generate image "a red fox in the snow" --model nano-banana-2 -o ./out/
# Generate video
openart generate video "cinematic fox running" --model seedance-2-5 -o ./out/
# List models
openart model list
# Check model params
openart model form <model-id>
Via AI Agents (after restart)
Simply ask your agent:
- "Generate a moodboard of a desert-glass perfume bottle — 4 variations, studio light, 1:1"
- "Create a 5-second video of a fox running in snow using Seedance 2.5"
- "Use Smart Shot to plan and generate a product commercial"
Notes
- Requires OpenArt credits for generations
- Restart AI tools after MCP config to load the server
- MCP endpoint:
https://mcp.openart.ai/mcp
- All generations saved to your OpenArt library automatically
1---2name: openart-mcp-setup3description: Connect OpenArt image and video generation models to AI tools (Claude, ChatGPT, Cursor) through the Model Context Protocol. Use when installing or authenticating the OpenArt CLI/MCP server, or connecting OpenArt models to an AI client.4---56# OpenArt MCP Setup Skill78Connect all OpenArt models (17+ image/video models) to Claude, ChatGPT, and Cursor via MCP.910## Quick Setup (Windows)1112```powershell13# 1. Install OpenArt CLI14irm https://raw.githubusercontent.com/OpenArt-AI/cli/main/install.ps1 | iex1516# 2. Add to PATH for current session17$env:PATH += ";C:\Users\USER\AppData\Local\Programs\openart\bin"1819# 3. Login to OpenArt20openart login21```2223## Configure MCP for All AI Tools2425### Claude (`~/.config/claude/mcp.json`)26```json27{28 "mcpServers": {29 "openart": {30 "url": "https://mcp.openart.ai/mcp"31 }32 }33}34```3536### Cursor (`~/.cursor/mcp.json`)37```json38{39 "mcpServers": {40 "openart": {41 "url": "https://mcp.openart.ai/mcp"42 }43 }44}45```4647### ChatGPT (`~/AppData/Roaming/ChatGPT/mcp.json`)48```json49{50 "mcpServers": {51 "openart": {52 "url": "https://mcp.openart.ai/mcp"53 }54 }55}56```5758## Available Models (17 Total)5960### Image Models61| Model ID | Name | Capabilities |62|----------|------|--------------|63| `nano-banana-2` | Nano Banana 2 | text2image, image2image |64| `nano-banana-pro` | Nano Banana Pro | text2image, image2image |65| `nano-banana-2-lite` | Nano Banana 2 Lite | text2image, image2image |66| `gpt-image-2` | GPT Image 2 | text2image, image2image |67| `byte-plus-seedream-4-5` | Seedream 4.5 | text2image, image2image |68| `byte-plus-seedream-5-pro` | Seedream 5 Pro | text2image, image2image |69| `byte-plus-seedream-5-lite` | Seedream 5 Lite | text2image, image2image |70| `kling-3-omni` | Kling 3 Omni | text2image, image2image |7172### Video Models73| Model ID | Name | Capabilities |74|----------|------|--------------|75| `grok-imagine-1-5` | Grok Imagine 1.5 | text2video, image2video |76| `gemini-omni-flash` | Gemini Omni Flash | text2video, image2video, element2video |77| `gemini-omni-1-1-flash` | Gemini Omni 1.1 Flash | text2video, image2video, element2video |78| `kling-3-omni` | Kling 3 Omni | text2video, image2video, element2video |79| `byte-plus-seedance-2` | Seedance 2.0 | text2video, image2video, element2video |80| `byte-plus-seedance-2-fast` | Seedance 2.0 Fast | text2video, image2video, element2video |81| `byte-plus-seedance-2-mini` | Seedance 2.0 Mini | text2video, image2video, element2video |82| `byte-plus-seedance-2-5` | Seedance 2.5 | text2video, image2video, element2video |83| `wan2-7` | Wan 2.7 | text2video, image2video, element2video |84| `pixverseV6` | PixVerse V6 | text2video, image2video |8586### Hybrid (Image + Video)87| Model ID | Name | Capabilities |88|----------|------|--------------|89| `smart-shot` | Smart Shot | preview-shot-plan, generate-shot-video |9091## Usage9293### Via CLI94```powershell95$env:PATH += ";C:\Users\USER\AppData\Local\Programs\openart\bin"9697# Generate image98openart generate image "a red fox in the snow" --model nano-banana-2 -o ./out/99100# Generate video101openart generate video "cinematic fox running" --model seedance-2-5 -o ./out/102103# List models104openart model list105106# Check model params107openart model form <model-id>108```109110### Via AI Agents (after restart)111Simply ask your agent:112- "Generate a moodboard of a desert-glass perfume bottle — 4 variations, studio light, 1:1"113- "Create a 5-second video of a fox running in snow using Seedance 2.5"114- "Use Smart Shot to plan and generate a product commercial"115116## Notes117- Requires OpenArt credits for generations118- Restart AI tools after MCP config to load the server119- MCP endpoint: `https://mcp.openart.ai/mcp`120- All generations saved to your OpenArt library automatically