Loading your content...
For developers
Every surface for shipping generative media — terminal, editor, agent, backend. Pick the one that fits your stack.
Generate images, videos, music. Reference your trained influencers with @<handle>— auto-switches to the model's edit variant. Interactive TUI with slash commands and a live job tracker.
Install
npm install -g @genfire/cliOr brew install genfireai/tap/genfire · or curl-pipe-sh on Linux/macOS.
37 tools for image, video, audio, lipsync, faceless reels, influencers, workflows, batches, and account management. Best for Claude Desktop, claude.ai web, and clients without shell access. No CLI required — just an API key.
Endpoint
https://mcp.genfire.ai/mcpClaude Code one-liner
claude mcp add --transport http genfire https://mcp.genfire.ai/mcp --header "Authorization: Bearer YOUR_KEY"Get a key from the developer dashboard.
For Claude Code specifically, the Skills bundle is usually a better fit — far lower per-call token cost.
Direct HTTP for backends, CI jobs, automations, and any platform without a Node runtime. Bearer auth, idempotency keys, signed-URL uploads, webhooks.
Base URL
https://api.genfire.ai/v1/Example
curl -X POST https://api.genfire.ai/v1/images/generations \
-H "Authorization: Bearer YOUR_KEY" \
-H "Idempotency-Key: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{"prompt":"a neon-lit alley at dusk","model":"image.nano_banana_2"}'Typed fetch-based client for Node and modern browsers. Same surface area as the REST API, but with autocomplete, idempotency keys handled for you, and helpers like uploadFile() and waitForRun().
Install
npm install @genfire/sdkimport { GenFireClient } from '@genfire/sdk';
const client = new GenFireClient({ apiKey: process.env.GENFIRE_API_KEY! });
const run = await client.createImageGeneration({
prompt: 'a neon-lit alley at dusk',
model: 'image.nano_banana_2'
});For Claude Code, Cursor, OpenCode. Loads skill prompts once instead of paying MCP schema cost on every call. After installing, ask in plain English — the agent runs the right genfire command for you.
Step 1 · Add the marketplace
/plugin marketplace add genfireai/skillsStep 2 · Install all skills (one bundle)
/plugin install genfire@genfireRequires the CLI: npm install -g @genfire/cli then genfire auth login. Once logged in, genfire mcp setup also configures the MCP server automatically.
| If you're... | Use |
|---|---|
| Working in Claude Code or Cursor | Skills + CLI |
| In a terminal, want to script generations | CLI |
| Building a Node or browser app | TypeScript SDK |
| Building in Python, Go, Ruby, etc. | REST API |
| In Claude Desktop or claude.ai web | MCP |
| Running a CI job that generates assets | CLI with GENFIRE_API_KEY |