MCP Hub
Back to servers

Creative Claw

On-brand creative studio for AI agents: images, video, audio, and 3D.

Registry
Stars
1
Updated
Apr 12, 2026
Validated
Apr 27, 2026

Creative Claw

Generate on-brand media, inside Claude.

Creative Claw is an MCP plugin that brings a full AI media studio into Claude Code and Claude Desktop. Generate images, videos, speech, 3D models — all from natural language, all through one account. No API keys. No platform switching. Just describe what you need.

creativeclaw.co | Join the Beta


What You Get

MCP Server (auto-connected)

One connection to Creative Claw's MCP server gives you 18+ tools for media generation, editing, and asset management:

CategoryTools
Imagegenerate_image, edit_image, generate_image_variants, load_image
Videogenerate_video, check_video_job, remove_video_background
Speechgenerate_speech
3Dgenerate_3d_model, check_3d_model_job
Modelslist_models, get_model_params
Assetssearch_assets, update_asset, upload_asset, delete_asset, confirm_upload, get_upload_url
Brandingget_theme, list_themes, update_theme, delete_theme

Access 1,000+ production-ready AI models — FLUX, Gemini, Veo, Sora, Kling, Seedance, Hailuo, HeyGen, Recraft, ElevenLabs, and more — through a single unified account with usage-based pricing.

Skills (Creative Workflows)

Skills are prompt-based workflows that teach Claude how to use the tools effectively — model selection, prompt engineering, multi-step production pipelines.

SkillWhat It Does
image-generationHelps you pick the right model, craft effective prompts, and generate or edit images. Covers 6 recommended models with detailed reference guides.
video-generationGuides you through model selection, reference image generation, camera direction, multi-segment video production, and talking avatars. Covers 9 recommended models with detailed reference guides.
brand-themeManages brand themes — save logos, colors, fonts, and style preferences. Extract brand elements from websites. Themes are used by image and video skills for consistent branding.

Each skill includes per-model reference files with prompting best practices, parameter tables, example prompts, and comparison guidance.


Supported Models

Image Generation

ModelIDHighlights
GPT Image 1.5fal-ai/gpt-image-1.5Production-quality, strong prompt adherence, fine detail
Gemini 3 Profal-ai/nano-banana-proComplex reasoning, semantic understanding, text in images
Gemini 3.1 Flashfal-ai/nano-banana-2Fast, high-fidelity, excellent text rendering, multilingual
FLUX.2 Profal-ai/flux-2-proZero-config professional quality, HEX color precision
Recraft V3fal-ai/recraft/v3/text-to-image#1 on benchmarks, design and illustration
FLUX Schnellfal-ai/flux/schnellFastest (~0.5s), cheapest, great for drafts

Image Editing

ModelIDHighlights
GPT Image 1.5fal-ai/gpt-image-1.5/editStrong prompt adherence, identity preservation
Gemini 3 Profal-ai/nano-banana-pro/editSemantic edit instructions, 14 reference images
FLUX Kontext Maxfal-ai/flux-pro/kontext/maxTypography, consistency, precise edits
Gemini 3.1 Flashfal-ai/nano-banana-2/editFast, no masking required

Video Generation

ModelIDAudioImage Input
Veo 3.1fal-ai/veo3.1Native dialogue + SFXYes (/image-to-video)
Veo 3.1 Fastfal-ai/veo3.1/fastNative dialogue + SFXYes (/fast/image-to-video)
Sora 2 Profal-ai/sora-2/text-to-video/proNative audioYes (/image-to-video/pro)
Kling v3 Profal-ai/kling-video/v3/pro/text-to-videoNative audio + lip-syncYes (/image-to-video)
Seedance 2.0fal-ai/bytedance/seedance-2.0/text-to-videoNative audioYes (/image-to-video)
Seedance 2.0 Fastfal-ai/bytedance/seedance-2.0/fast/text-to-videoNative audioYes (/image-to-video)
Hailuo-02 Profal-ai/minimax/hailuo-02/pro/text-to-videoYesYes (/image-to-video)
Hailuo 2.3 Fastfal-ai/minimax/hailuo-2.3-fast/standard/image-to-videoNoYes (I2V only)

Talking Avatars

ModelIDHighlights
HeyGen Avatar 4fal-ai/heygen/avatar4/image-to-videoPhoto → talking avatar with lip-sync, 400+ poses, 100+ voices
HeyGen Video Agentfal-ai/heygen/v2/video-agentBudget talking avatar from text (~$2/min)

These are our top picks. Use list_models to browse 100+ more across all categories.


Install

Claude Code

# 1. Add the marketplace
claude plugin marketplace add CreativeClawCo/creative-claw-marketplace

# 2. Install the plugin
claude plugin install creative-claw@creative-claw-marketplace

# 3. Authenticate — on first use, the MCP server will prompt you to sign in via Clerk OAuth

That's it. The plugin connects to Creative Claw's MCP server and gives you access to all generation tools + the /create-image and /create-video skills.

Claude Desktop

Add to your MCP config (claude_desktop_config.json):

{
  "mcpServers": {
    "creative-claw": {
      "type": "http",
      "url": "https://app.creativeclaw.co/mcp"
    }
  }
}

No API keys needed — auth is handled via Clerk OAuth on first connection.


Quick Start

Just talk to Claude naturally:

"Generate a product photo of my headphones on a marble surface, golden hour lighting"
  -> image-generation skill picks the best model, crafts the prompt, generates

"Make a 15-second cinematic video of coffee being poured in slow motion"
  -> video-generation skill recommends Hailuo-02 Pro for physics, generates reference image, then video

"Edit this image — change the background to a beach sunset, keep the person unchanged"
  -> routes to an edit model, preserves identity, swaps background

"I need a TikTok-style product video for this shoe" [attach image]
  -> generates reference frames, picks an I2V model, produces the clip

Architecture

You -> Claude + Skills (model selection, prompt engineering, creative direction)
              |
         MCP Tools (generate_image, generate_video, edit_image, ...)
              |
       Creative Claw Server (fal.ai + R2 storage + Clerk auth)
              |
       Permanent media URLs (never expire)

No API keys. No CLI wrappers. No expiring URLs. Just skills + MCP.


Project Structure

This repo is a marketplace — it contains one or more installable plugins.

.claude-plugin/
  marketplace.json         # Marketplace manifest (required for Claude Code marketplace sync)
  plugin.json              # Root plugin metadata
plugins/
  creative-claw/
    .claude-plugin/
      plugin.json          # Plugin manifest (MCP server config)
    openclaw.plugin.json   # OpenClaw compatibility
    skills/
      image-generation/
        skill.md           # Image generation workflow + model guide
        references/
          gpt-image-1.5.md
          nano-banana-pro.md
          nano-banana-2.md
          flux-2-pro.md
          recraft-v3.md
          flux-schnell.md
      video-generation/
        skill.md           # Video generation workflow + model guide
        references/
          veo-3.1.md
          sora-2-pro.md
          kling-v3-pro.md
          seedance-2.0.md
          hailuo-02-pro.md
          hailuo-2.3-fast.md
          heygen-avatar-4.md
      brand-theme/
        skill.md           # Brand theme management workflow

Pricing

Usage-based — pay only for what you generate. No subscriptions, no commitments. Check creativeclaw.co for current rates.


Compatibility

  • Claude Code — via .claude-plugin/plugin.json
  • Claude Desktop — via MCP server config
  • OpenClaw — via openclaw.plugin.json

All use the same skills and connect to the same MCP server.


License

Apache-2.0


Built by Creative Claw Co.

Reviews

No reviews yet

Sign in to write a review