Mable
Mable CLI

Give your coding agent game assets.

The mable CLI lets Claude Code, Codex, or any agent that can run a command create character animations, visual effects, sound effects, music, and voice lines, and save them straight into your project.

Install

One command, every tool.

Install

macOS · Linux
curl -fsSL https://mable-dev-service.mable.gg/cli/install.sh | sh

Log in

Opens your browser
mable login

mable login saves the key on your machine only. Never paste a key into a chat or commit it to a project. Agent running on another computer? The sign-in page gives it a one-time code instead.

  • Character Animationmable gen sprite --image hero.png --motion "run cycle" --state run
  • Visual Effectsmable gen vfx --prompt "blue fire orb" --motion "bursts and fades" --state burst
  • Sound Effectsmable gen sfx --prompt "coin pickup ding" --category pickup
  • Musicmable gen music --prompt "upbeat chiptune boss loop" --duration 45
  • Voiceovermable gen voice --text "Welcome, traveler." --speaker ryan
Workflow

From prompt to game-ready file.

Install once

One command installs the mable CLI and teaches Claude Code and Codex when to use it. Needs Node.js 18 or newer.

Log in

Run the login command below, or let your agent run it. It opens Mable in your browser: sign in, approve, and the key is saved on your machine.

Ask your agent

"Add a coin sound and a run animation for the hero." Your agent plans the assets, generates them, and wires them into your game.

Files land in your project

Sprite sheets, engine atlas JSON and MP3s are saved under assets/ with playback metadata. Rerunning the exact same command doesn't charge twice.

MCP

Prefer MCP?

The same tools are available as a remote MCP server. Create an Agent Key, set it as MABLE_AGENT_KEY in your environment, then add the server once.

Codex

Remote MCP
codex mcp add mable-tools --url https://mable-dev-service.mable.gg/mcp --bearer-token-env-var MABLE_AGENT_KEY

Claude Code

User-scoped MCP
claude mcp add-json --scope user mable-tools '{"type":"http","url":"https://mable-dev-service.mable.gg/mcp","headers":{"Authorization":"Bearer ${MABLE_AGENT_KEY}"}}'