Civitai

Search, download, and wire Civitai models into local ComfyUI via comfyui-mcp

Works with setup

Test report

Verdict
Works with setup
Score
6.8/10
Tested
Jul 31, 2026
Environment
Claude Code 2.x (agent harness)
Upstream re-checked
Aug 10, 2026 · b0e6e05

Located SKILL.md at plugin/skills/civitai/SKILL.md via the GitHub tree and fetched it raw. Frontmatter parses with name + description (307-char, concrete). Verified the three sibling skills it cites (model-registry, model-compatibility, prompt-engineering) all return HTTP 200, and confirmed the tools it drives are real by grepping src/services/civitai-resolver.ts, which exports searchCivitaiModels/resolveCivitaiModelVersion and comments referencing download_civitai_model. No security smells (no curl|sh, no base64, no exfil); the optional `claude mcp add` line is a legitimate community-server step. Output stage not run: the skill is a driver for the comfyui-mcp MCP server against a ComfyUI backend, which I cannot stand up here, so no baseline-vs-skill artifact exists.

Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works

  • Installs cleanly 5/5
  • Triggers reliably 5/5
  • Output vs. baseline 3/10
  • Docs & honesty 4/5

What Civitai does

Guides Claude through the comfyui-mcp built-in tools to search Civitai for checkpoints/LoRAs/embeddings, download them into the right ComfyUI subfolder, and wire them into a workflow with their trigger words. Triggers when a user wants to find, install, or download a Civitai model locally, or pastes a Civitai model URL. Requires the comfyui-mcp MCP server running against a ComfyUI backend.

How to install Civitai

git clone --depth 1 https://github.com/artokun/comfyui-mcp.git /tmp/civitai-src
mkdir -p ~/.claude/skills
cp -R /tmp/civitai-src/plugin/skills/civitai ~/.claude/skills/civitai
# REQUIRES the comfyui-mcp MCP server running against a live ComfyUI backend —
# the skill calls its built-in tools (search_civitai_models, download_civitai_model,
# list_local_models, panel_add_node, generate_image). Without that server the skill
# has no tools to drive. Set up comfyui-mcp per the repo README first.
# Optional: export CIVITAI_API_TOKEN=... (civitai.com/user/account) for gated downloads.
# Optional community MCP: claude mcp add --transport http civitai https://mcp.civitai.com/mcp --header "Authorization: Bearer YOUR_CIVITAI_API_KEY"
# Sibling skills referenced by the body live alongside it: cp -R /tmp/civitai-src/plugin/skills/{model-registry,model-compatibility,prompt-engineering} ~/.claude/skills/

Skills live in ~/.claude/skills/ (global) or .claude/skills/ (per-project). Restart Claude Code after installing.

Commands — how to trigger Civitai

  • /civitai Search, download, and wire Civitai models into local ComfyUI via comfyui-mcp

It also activates on plain-language prompts like these:

  • Find a LoRA for this style on Civitai
  • Download this Civitai checkpoint into ComfyUI
  • Browse Civitai images for inspiration

Frequently asked questions

Is the Civitai skill free?
Yes. The skill itself is free from artokun/comfyui-mcp. SkillProof publishes the install command and an independent test verdict at no cost.
Does Civitai work with Claude Code?
We tested it with Claude Code 2.x (agent harness) on Jul 31, 2026. Verdict: Works with setup. Located SKILL.md at plugin/skills/civitai/SKILL.md via the GitHub tree and fetched it raw. Frontmatter parses with name + description (307-char, concrete). Verified the three sibling skills it cites (model-registry, model-compatibility, prompt-engineering) all return HTTP 200, and confirmed the tools it drives are real by grepping src/services/civitai-resolver.ts, which exports searchCivitaiModels/resolveCivitaiModelVersion and comments referencing download_civitai_model. No security smells (no curl|sh, no base64, no exfil); the optional `claude mcp add` line is a legitimate community-server step. Output stage not run: the skill is a driver for the comfyui-mcp MCP server against a ComfyUI backend, which I cannot stand up here, so no baseline-vs-skill artifact exists.
What is the Civitai SkillProof Score?
6.8/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 3/10, docs & honesty 4/5.
How do I install Civitai?
Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
Can I use Civitai with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.