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

@meart/mcp-server

v1.0.5

Published

MCP Server for MEart AI image/video generation platform

Readme

MEart MCP Server

MCP (Model Context Protocol) server for MEart AI generation platform. Generate images and videos directly from Claude Desktop or Claude Code.

Features

  • AI Image Generation: 10+ models including Flux, Seedream, NanoBanana, and more
  • AI Video Generation: 15+ models including Kling, Sora, VEO, Vidu, Pixverse, and more
  • Image Tools: Background removal, image upscaling/enhancement
  • Account Info: Check credit balance, view generation history, list available models

Quick Start

1. Get Your API Key

  1. Visit MEart Tools
  2. Log in to your MEart account
  3. Click Generate New Key
  4. Copy and save your API key (shown only once)

2. Configure Claude

Claude Code (CLI)

Add to ~/.claude/settings.json (macOS/Linux) or %USERPROFILE%\.claude\settings.json (Windows):

{
  "mcpServers": {
    "meart": {
      "command": "npx",
      "args": ["-y", "@meart/mcp-server"],
      "env": {
        "MEART_API_KEY": "your-api-key-here"
      }
    }
  }
}

Claude Desktop

Add to config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "meart": {
      "command": "npx",
      "args": ["-y", "@meart/mcp-server"],
      "env": {
        "MEART_API_KEY": "your-api-key-here"
      }
    }
  }
}

3. Restart Claude

Restart Claude Desktop or your terminal session, then start creating!

Environment Variables

| Variable | Required | Description | Default | |----------|----------|-------------|---------| | MEART_API_KEY | Yes | Your MEart API key from meart-ai.com/tools/mcp | - | | MEART_DEFAULT_IMAGE_MODEL | No | Default image model | flux-2-dev | | MEART_DEFAULT_VIDEO_MODEL | No | Default video model | kling2.5standard |

Usage Examples

Once configured, just ask Claude naturally:

  • "Generate an image of a sunset over mountains"
  • "Create a 5-second video of a cat playing"
  • "Remove the background from this image"
  • "Check my MEart credit balance"
  • "What image models are available?"

Available Tools

meart_generate

Generate AI images or videos.

// Image generation
"Generate an image of a beautiful sunset"
"Create a cyberpunk city using seedream4.5 model"

// Video generation
"Create a 5-second video of ocean waves"
"Generate a video of a dancing robot using veo3.1"

Supported parameters:

  • action: image or video
  • prompt: Description of what to generate
  • model: Specific model to use (optional)
  • aspect_ratio: Image/video ratio (e.g., 16:9, 9:16, 1:1)
  • duration: Video length in seconds
  • And more model-specific options

meart_transform

Transform existing images.

// Background removal
"Remove the background from this image: [url]"

// Image enhancement
"Upscale this image 2x: [url]"

meart_query

Query account and model information.

// Check credits
"How many credits do I have?"

// List models
"What video models are available?"

// View history
"Show my recent generations"

Supported Models

Image Models

| Model | Description | |-------|-------------| | flux-2-dev | Flux 2 Dev (default) | | flux-2-pro | Flux 2 Pro | | flux-2-max | Flux 2 Max | | seedream4.5 | Seedream 4.5 | | nanobanana | NanoBanana | | nanobanana-pro | NanoBanana Pro | | reve | Reve | | gpt-image-1.5 | GPT Image 1.5 |

Video Models

| Model | Description | |-------|-------------| | kling2.5standard | Kling 2.5 Standard (default) | | kling2.5pro | Kling 2.5 Pro | | kling2.6pro | Kling 2.6 Pro | | veo3.1 | Google VEO 3.1 | | sora2 | Sora 2 | | sora2pro | Sora 2 Pro | | viduq2 | Vidu Q2 | | pixverse5.5 | Pixverse 5.5 | | wan2.5 | Wan 2.5 | | seedancev1pro | Seedance V1 Pro |

Security

  • Your API key is linked to your MEart account
  • Never share your API key publicly
  • You can revoke keys anytime at meart-ai.com/tools/mcp
  • All generations use your MEart credits

Support

License

MIT