.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/samuraigpt/muapi-cli
home/mcp-servers/samuraigpt/muapi-cli
samuraigpt avatar

muapi-cli

bysamuraigpt· 2 MCP servers

Installs

1.2k

Stars

1.0k

Forks

94

Category

Generative Media

View on GitHub

TL;DR

Official command-line interface for muapi.ai — generate images, videos, and audio directly from your terminal.

How to install muapi-cli?

samuraigpt/muapi-cli
$git clone https://github.com/samuraigpt/muapi-cli

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install muapi-cli by running `git clone https://github.com/samuraigpt/muapi-cli`, then use it for the current task and follow its documentation at https://github.com/samuraigpt/muapi-cli.

Files · 1

View on GitHub
README.md
1# muapi CLI
2 
3[![Powered by MuAPI](https://img.shields.io/badge/Powered%20by-MuAPI-6366f1?style=flat-square&logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0id2hpdGUiIGQ9Ik0xMiAyQzYuNDggMiAyIDYuNDggMiAxMnM0LjQ4IDEwIDEwIDEwIDEwLTQuNDggMTAtMTBTMTcuNTIgMiAxMiAyem0tMSAxNHYtNGgtMnYtMmg0djZoLTJ6bTAtOFY2aDJ2MmgtMnoiLz48L3N2Zz4=)](https://muapi.ai?utm_source=github&utm_medium=badge&utm_campaign=muapi-cli)
4 
5 
6Official command-line interface for [muapi.ai](https://muapi.ai?utm_source=github&utm_medium=readme&utm_campaign=muapi-cli) — generate images, videos, and audio directly from your terminal.
7 
8**Agent-first design** — every command works for both humans (colored output, tables) and AI agents (`--output-json`, `--jq` filtering, semantic exit codes, MCP server mode).
9 
10## Related Projects
11 
12- [Open-Generative-AI](https://github.com/Anil-matcha/Open-Generative-AI) — Browser-based GUI for the same models — no CLI required
13- [Awesome-GPT-Image-2-API-Prompts](https://github.com/Anil-matcha/Awesome-GPT-Image-2-API-Prompts) — Curated prompt library to run via this CLI
14- [ai-creator-academy](https://github.com/Anil-matcha/ai-creator-academy) — free curriculum teaching creators how to monetize generative AI, including running models via this CLI
15 
16## Install
17 
18```bash
19# npm (recommended — no Python required)
20npm install -g muapi-cli
21 
22# pip
23pip install muapi-cli
24 
25# or run without installing
26npx muapi-cli --help
27```
28 
29## Quick Start
30 
31```bash
32# New user? Create an account
33muapi auth register --email you@example.com --password "..."
34muapi auth verify --email you@example.com --otp 123456
35muapi auth login --email you@example.com --password "..."
36 
37# Or paste an existing API key
38muapi auth configure --api-key "YOUR_KEY"
39 
40# Generate — pick a curated verb…
41muapi image generate "a cyberpunk city at night" --model flux-dev
42muapi video generate "a dog running on a beach" --model kling-master
43muapi audio create "upbeat lo-fi hip hop for studying"
44 
45# …or run any model by endpoint name (schema-driven, covers the whole catalog)
46muapi run flux-dev-image -p "a cyberpunk city at night"
47muapi run seedance-2-text-to-video -p "drone shot over snowy peaks" -i duration=5
48muapi run <model> -h # introspects the live OpenAPI schema
49 
50# Check balance
51muapi account balance
52 
53# Wait for an existing job
54muapi predict wait <request_id>
55```
56 
57## Commands
58 
59### `muapi auth`
60| Command | Description |
61|---------|-------------|
62| `muapi auth register --email x --password y` | Create a new account (sends OTP) |
63| `muapi auth verify --email x --otp 123456` | Verify email after registration |
64| `muapi auth login --email x --password y` | Log in and save API key automatically |
65| `muapi auth forgot-password --email x` | Send password reset OTP |
66| `muapi auth reset-password --email x --otp y --password z` | Reset password |
67| `muapi auth configure` | Manually save an API key |
68| `muapi auth whoami` | Show current API key (masked) |
69| `muapi auth logout` | Remove stored API key |
70 
71### `muapi account`
72| Command | Description |
73|---------|-------------|
74| `muapi account balance` | Show current credit balance |
75| `muapi account topup --amount 20` | Add credits via Stripe checkout |
76 
77### `muapi keys`
78| Command | Description |
79|---------|-------------|
80| `muapi keys list` | List all API keys on your account |
81| `muapi keys create --name label` | Create a new API key (shown once) |
82| `muapi keys delete <id>` | Delete an API key by ID |
83 
84### `muapi image`
85| Command | Description |
86|---------|-------------|
87| `muapi image generate <prompt>` | Text-to-image generation |
88| `muapi image edit <prompt> --image <url>` | Image-to-image editing |
89| `muapi image models` | List available models |
90 
91**Models:** `flux-dev`, `flux-schnell`, `flux-kontext-dev/pro/max`, `hidream-fast/dev/full`, `wan2.1`, `reve`, `gpt4o`, `midjourney`, `seedream`, `qwen`
92 
93### `muapi video`
94| Command | Description |
95|---------|-------------|
96| `muapi vi

Preview

samuraigpt/muapi-clisamuraigpt/muapi-cli

# muapi CLI

[![Powered by MuAPI](https://img.shields.io/badge/Powered%20by-MuAPI-6366f1?style=flat-square&logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5

Official command-line interface for [muapi.ai](https://muapi.ai?utm_source=github&utm_medium=readme&utm_campaign=muapi-cli) — generate images, videos, and audio

**Agent-first design** — every command works for both humans (colored output, tables) and AI agents (`--output-json`, `--jq` filtering, semantic exit codes, MCP

Reposamuraigpt/muapi-cli
TypeMCP Servers
CategoryGenerative Media
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

MCPaiai-api

Related

6 picks
Type
  1. artokun avatarcomfyui-mcpMCP server + Claude Code plugin for ComfyUI: run workflows, generate images, manage models & VRAM.MCP ServersJul 2026110k455
  2. elevenlabs avatarelevenlabs-mcpMCP server that enables interaction with Text to Speech, Voice Agents and audio processing APIsMCP ServersJul 202653k1.5k
  3. monet-ai-editor avatarmonetElectron video editor with terminal-first controls, transcription, embeddings, and exportMCP ServersJul 202646k99
  4. zhongweili avatarnanobanana-mcp-serverAI image generation with Gemini 3 Pro (4K) and 2.5 Flash. Smart model selection.MCP ServersMay 202612k385
  5. minimax-ai avatarminimax-mcpMinimax MCP ServerMCP ServersMay 20269.6k1.5k
  6. kyanitelabs avatarkinocutGuardrailed video editing for AI agents: FFmpeg, captions, effects, Hyperframes, and receipts.MCP ServersJul 20269.6k95