namifusion

NamiFusion for AI Agents

Give your CLI or coding agent the ability to generate images and video, swap faces, run model APIs and orchestrate a node canvas — over remote MCP servers, with a REST fallback. Unified auth and credits, no arbitrary content filters.

MCP endpoints

Generation MCP
AI generation, face swap, task management, file uploads
https://www.namifusion.com/api/v1/task/mcp/
Marketplace MCP
Discover and run API models
https://www.namifusion.com/api/v1/marketplace/mcp/
Workflow MCP
Canvas workflow orchestration
https://www.namifusion.com/api/v1/workflow/mcp

Connect in 3 steps

  1. 1. Create an API key on the API Keys page.
  2. 2. Add a NamiFusion MCP server to your agent (below).
  3. 3. Ask your agent to generate — it calls NamiFusion directly.
Claude Code
claude mcp add namifusion --transport http https://www.namifusion.com/api/v1/task/mcp/ \
  --header "Authorization: Bearer sk-YOUR_API_KEY"
Codex
codex mcp add namifusion \
  --url https://www.namifusion.com/api/v1/task/mcp/ \
  --header "Authorization=Bearer sk-YOUR_API_KEY"
REST (fallback)
curl -X POST https://www.namifusion.com/api/v1/marketplace/run/MODEL_ID \
  -H "Authorization: Bearer sk-YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"prompt":"..."}}'