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

@iflow-mcp/meshy-dev-meshy-mcp-server

v0.2.1

Published

MCP server for Meshy AI 3D generation platform

Readme

Meshy MCP Server

Model Context Protocol (MCP) server for the Meshy AI 3D generation platform. Enables AI agents to create, manage, and download 3D models, textures, images, rigged characters, and animations through natural conversation.

Features

19 tools covering the full Meshy API:

| Category | Tools | |----------|-------| | 3D Generation | meshy_text_to_3d, meshy_text_to_3d_refine, meshy_image_to_3d, meshy_multi_image_to_3d | | Post-Processing | meshy_remesh, meshy_retexture, meshy_rig, meshy_animate | | Image Generation | meshy_text_to_image, meshy_image_to_image | | Task Management | meshy_get_task_status, meshy_list_tasks, meshy_cancel_task, meshy_download_model | | Workspace | meshy_list_models | | 3D Printing | meshy_send_to_slicer, meshy_analyze_printability, meshy_process_multicolor | | Account | meshy_check_balance |

Key Capabilities

  • Text to 3D: Generate 3D models from text descriptions (preview + refine pipeline)
  • Image to 3D: Convert single or multiple images into 3D models
  • Auto-Rigging & Animation: Add skeletons and animations to humanoid characters
  • Multi-Color 3D Printing: Process textured models into multi-color 3MF files for 3D printing
  • Slicer Integration: Auto-detect installed slicer software and open models directly
  • Print-Ready OBJ: Built-in coordinate transformation (Y-up → Z-up) for 3D printing
  • Smart File Organization: Auto-saves to meshy_output/ with project folders, metadata, and history tracking
  • Built-in Workflow Intelligence: Server instructions guide the agent through correct tool chains for each use case

Quick Start

Prerequisites

  • Node.js >= 18
  • A Meshy API key (get one here — requires Pro plan or above)

Claude Code

claude mcp add meshy -- npx -y @meshy-ai/meshy-mcp-server -e MESHY_API_KEY=msy_YOUR_API_KEY

That's it. The server includes built-in workflow instructions — no additional configuration needed.

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "meshy": {
      "command": "npx",
      "args": ["-y", "@meshy-ai/meshy-mcp-server"],
      "env": {
        "MESHY_API_KEY": "msy_YOUR_API_KEY"
      }
    }
  }
}

Configuration

| Environment Variable | Description | Default | |---------------------|-------------|---------| | MESHY_API_KEY | Required. Your Meshy API key (starts with msy_) | — | | MESHY_API_HOST | API base URL | https://api.meshy.ai | | TRANSPORT | Transport mode: stdio or http | stdio | | PORT | Port for HTTP transport | 3000 | | CHARACTER_LIMIT | Max response size in characters | 25000 |

Development

# Clone and install
git clone https://github.com/meshy-dev/meshy-mcp-server.git
cd meshy-mcp-server
npm install

# Development with hot reload
npm run dev

# Build
npm run build

# Type check
npm run lint

# Run
npm start

HTTP Transport

For remote access, run in HTTP mode:

TRANSPORT=http PORT=3000 npm start

Endpoints:

  • POST /mcp — MCP protocol endpoint
  • GET /health — Health check

License

MIT