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

blender-mcp

v1.0.1

Published

MCP server for controlling Blender via AI assistants

Readme


Overview

Blender MCP enables AI assistants to control Blender programmatically, allowing you to:

  • Create complex 3D models with detailed planning and procedural generation
  • Search the internet for 3D models and textures
  • Apply materials and textures to objects
  • Modify existing models
  • Import and export 3D files

Installation

# Install from npm
npm install -g blender-mcp

# Or use npx
npx blender-mcp

Requirements: Node.js 18+ and Blender installed


Available Tools

| Tool | Description | |------|-------------| | create_complex_model | Build complex 3D models with internet search and detailed planning. Supports Indian themes: temples, vehicles, food, characters, buildings, and more. | | modify_model | Modify existing 3D models - change colors, materials, scale, rotation, or apply effects. | | apply_texture | Apply procedural materials to 3D objects (wood, marble, stone, metal, etc.). | | search_models | Search the entire internet for 3D models across multiple sources. | | search_textures | Search for free textures from online databases. | | get_scene_info | Get information about the current Blender scene. | | import_from_url | Import a 3D model directly from a URL. |


Configuration

Claude Code

Add to your ~/.claude.json:

{
  "mcpServers": {
    "blender": {
      "command": "npx",
      "args": ["blender-mcp"]
    }
  }
}

OpenCode

{
  "blender": "npx blender-mcp"
}

Other MCP Clients

npx blender-mcp
# or
npm install -g blender-mcp && blender-mcp

Built-in Model Templates

The server includes procedural generation for various Indian-themed 3D models:

| Category | Description | |----------|-------------| | Temples | Detailed Indian temples with pillars, mandapa, shikhara, torana, and decorative elements | | Vehicles | Auto-rickshaws (Tuk-Tuk) with wheels, cabin, headlights, and details | | Food | Traditional Indian thali with plate, rice, curries, rotis, and accompaniments | | Buildings | Haveli/Palace structures with multiple floors, jali windows, chattris, and courtyards | | Characters | Human figures in traditional Indian attire (dhoti) |

Material Library

Built-in procedural materials:

| Material | Variants | |----------|----------| | Marble | white, red, green | | Metal | gold, copper, brass | | Stone | stone, sandstone, terracotta | | Wood | standard wood grain |


Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | BLENDER_EXECUTABLE | blender | Path to Blender executable | | BLENDER_TIMEOUT | 120 | Timeout for Blender operations (seconds) | | BLENDER_MCP_DIR | ~/Desktop/BLENDER-MCP | Base directory for output files | | BLENDER_MCP_DEBUG | false | Enable debug logging |


Example Usage

Once connected to an AI assistant, you can create 3D scenes like:

  1. "Create an Indian temple with red marble material"
  2. "Build a traditional auto-rickshaw in yellow"
  3. "Create a thali with rice and multiple curries"
  4. "Add a marble texture to my model"
  5. "Search for free 3D models of chairs"

Architecture

+-----------+      MCP      +-------------+    subprocess   +---------+
| Claude/   |  <----------> | blender-mcp |  <-----------   | Blender |
| Copilot   |               |  (Node.js)  |  --background   |  --bg   |
+-----------+               +-------------+                 +---------+

The server runs Blender as a background subprocess and executes Python scripts using Blender's bpy API for each operation.


Development

# Clone and install
npm install

# Build
npm run build

# Run
npm start

License

MIT License