Skip to main content

Deploy from Claude Code

Makofy works seamlessly with Claude Code for AI-assisted deployments.

Setup (once)

1. Install the CLI

Tell Claude Code:

"Run curl -fsSL https://makofy.com/install.sh | sh"

2. Generate an API token

Go to app.makofy.com/settings and click Generate Token.

3. Authenticate

Tell Claude Code:

"Run makofy login --token YOUR_TOKEN_HERE"

The --token flag is important — it enables non-interactive login, which is required for Claude Code.

Deploy

Once authenticated, just tell Claude Code:

"Deploy this to makofy"

Claude Code will run makofy deploy and you'll see the full build output in your conversation.

Example workflow

You: "Build a REST API with Express and deploy it to makofy"

Claude Code:
1. Creates the Express app
2. Runs `makofy deploy`
3. Shows you the live URL

Other commands Claude Code can run

CommandWhat it does
makofy deployDeploy current project
makofy logsShow app logs (useful for debugging)
makofy statusCheck current deploy status
makofy appsList all apps
makofy openOpen app in browser

Tips

  • Claude Code can read makofy logs output to debug runtime errors
  • Ask Claude Code to "check the makofy deploy status" after deploying
  • If a deploy fails, Claude Code can read the logs, fix the code, and redeploy