npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

muapi-mcp-server

v1.0.1

Published

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

Downloads

353

Readme

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

| Tool | Description | |------|-------------| | generate_image | Generate images from text prompts | | generate_video | Generate videos from text prompts | | edit_image | Edit an existing image with instructions | | image_to_video | Convert a still image into a video | | upload_file | Upload files to MuAPI for processing | | list_models | Browse available model categories | | model_details | Get details about a specific model | | get_prediction | Track the status of an async prediction | | account_balance | Check 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:

| Command | What 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-help | Explore 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