Quickstart
Framehood gives you image, video, and audio generation through one functional toolset. Pick the interface that fits how you work — all three share the same account and credit balance.
▶ Prefer to watch?
See the 3-minute setup video — installing Framehood in Claude and running a first generation.
1. Create an account
Sign up at framehood.ai. New accounts start on the free tier and generate within your included credits. See Credits & plans.
2. Choose an interface
Which should I use?
- Working inside Claude or an MCP editor? → MCP server (or the Claude Code plugin).
- Working in the terminal? → CLI.
- Building an app? → REST API.
Fastest path: MCP
Point your MCP client at:
https://mcp.framehood.ai/mcpYour client runs a browser sign-in (OAuth) on first connect. After that the image, video, audio, and other tools are available.
Fastest path: CLI
framehood login
framehood generate "a red fox in the snow"See the CLI guide for install and the interactive studio.
Fastest path: REST
curl -X POST https://api.framehood.ai/v1/jobs/flux_pro \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"inputs":{"prompt":"a red fox in the snow","out":"fox.jpg"}}'See the REST API reference.
3. Generate
Every job costs credits proportional to the underlying model. Long jobs return a job_id you poll until it succeeds; the result is a URL to your output file. The exact flow per interface is in each guide.