🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

muapi-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

muapi-mcp-server

MCP server for muapi.ai — generate images, videos, and media using 100+ AI models inside Claude Code and other MCP clients

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
48
45.45%
Maintainers
1
Weekly downloads
 
Created
Source

MuAPI – Claude Code Plugin

A Claude Code plugin that gives Claude the power to generate images, create videos, edit visuals, and more — all powered by MuAPI.

Simply install the plugin and start asking Claude to generate media for you.

✨ What It Can Do

ToolDescription
generate_imageGenerate images from text prompts
generate_videoGenerate videos from text prompts
edit_imageEdit an existing image with instructions
image_to_videoConvert a still image into a video
upload_fileUpload files to MuAPI for processing
list_modelsBrowse available model categories
model_detailsGet details about a specific model
get_predictionTrack the status of an async prediction
account_balanceCheck your MuAPI account balance

🚀 Installation

Install as a Claude Code Plugin

claude plugin add muapi

Or install directly from GitHub:

claude plugin add https://github.com/SamurAIGPT/muapi-claude-code.git

Configure Your API Key

Set your MuAPI API key:

claude config set plugins.muapi.env.MUAPI_API_KEY your_api_key_here

Get your API key from muapi.com.

💡 Usage

Once installed, just ask Claude naturally:

Image Generation

Generate an image of a futuristic city at sunset

Video Generation

Generate a cinematic drone shot over mountains

Image Editing

Edit this image to add a rainbow in the sky

Image to Video

Convert this image into a slow zoom-in video

🔧 Slash Commands

After installing, you can invoke skills directly:

CommandWhat it does
/muapi:generate-image <prompt>Generate an image from a text prompt
/muapi:generate-video <prompt>Generate a video from a text prompt
/muapi:edit-image <instructions>Edit an existing image
/muapi:image-to-video <image url>Animate a still image into a video
/muapi:media-helpExplore available models and get recommendations

🛠 Development

If you want to run the plugin locally for development:

git clone https://github.com/SamurAIGPT/muapi-claude-code.git
cd muapi-claude-code
npm install

Create a .env file:

MUAPI_API_KEY=your_api_key_here

Run the MCP server directly:

node src/index.js

📁 Project Structure

muapi-claude-code/
├── .claude-plugin/
│   └── plugin.json            # Claude Code plugin manifest
├── src/
│   ├── index.js               # MCP server entry point
│   └── tools/
│       ├── generateImage.js   # Image generation
│       ├── generateVideo.js   # Video generation
│       ├── editImage.js       # Image editing
│       ├── imageToVideo.js    # Image-to-video conversion
│       ├── uploadFile.js      # File upload
│       ├── listModels.js      # Model listing
│       ├── modelDetails.js    # Model details
│       ├── getPrediction.js   # Prediction tracking
│       └── accountBalance.js  # Account balance
├── .mcp.json                  # MCP server config
├── package.json
└── .env                       # API key (not committed)

📄 License

ISC

Keywords

mcp

FAQs

Package last updated on 11 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts