fattly
fattly — FATTLY CLI
Generate AI images, video, voiceovers, avatars & UGC ads from your terminal — or from AI assistants like Claude & Cursor via MCP.
30+ AI models · credits from your fattly.app account.
Install
npm install -g fattly(Requires Node.js 18+.)
Get started
Open the site → Dashboard → API keys → generate a key.
Log in from the terminal:
fattly login
# paste your gpx_live_… keyExamples
fattly credits
fattly models
fattly generate "astronaut cat on Mars" --model nano-banana-2 --out cat.png
fattly video "ocean waves at sunset" --model kling-3-standard --out waves.mp4
fattly audio "Welcome to FATTLY" --voice Rachel --out voice.mp3
fattly audio "calm ambient" --music --seconds 30 --out music.mp3MCP (Claude, Cursor)
The same package is an MCP server — it lets AI assistants generate through FATTLY. There are two ways to connect.
Option A — Hosted (no install, sign in with OAuth)
The fastest way: connect Claude straight to the hosted FATTLY MCP. No npm, no key to paste — you approve access in your browser.
In Claude → Settings → Connectors → Add custom connector, use this URL:
https://fattly.app/api/mcpClaude discovers the login automatically and opens a consent page on fattly.app; approve it and the tools are ready. Uses your fattly.app account and credits.
Option B — Local (npx, with your API key)
Add this to your client's MCP config:
{
"mcpServers": {
"fattly": {
"command": "npx",
"args": ["-y", "fattly", "mcp"],
"env": {
"FATTLY_API_KEY": "gpx_live_YOUR_KEY"
}
}
}
}Available tools: fattly_credits, fattly_list_models,
fattly_generate_image, fattly_generate_video, fattly_generate_audio.
API address
By default the CLI/MCP connects to the address set at login (or the default).
Override it at login (fattly login --url https://your-domain) or with the
FATTLY_API_URL environment variable.