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

@dbalster/blender-plugin

v0.1.2

Published

Kilo/OpenCode TypeScript plugin providing a Blender integration interface

Downloads

369

Readme

@dbalster/blender-plugin

100% AI-generated proof-of-concept. This project was requested as: re-write the official blender-mcp Python add-on into a TypeScript plugin for OpenCode/Kilo. Every line of code was written by an AI language model.

A Kilo/OpenCode TypeScript plugin that integrates with a running Blender instance via the blender-mcp add-on TCP server.

Features

  • 25+ Blender tools: execute code, scene introspection, object inspection, screenshots, workspace navigation, viewport focus, rendering, API docs lookup
  • Blender API documentation search (offline, bundled RST corpus)

Installation

npm install -g @dbalster/blender-plugin

Usage

  1. Install the blender-mcp add-on in Blender and start the TCP server
  2. Copy or symlink into .kilo/plugins/:
cp node_modules/@dbalster/blender-plugin/dist/blender.js ~/project/.kilo/plugins/blender.js
  1. Add to .kilo/kilo.json:
{
  "plugins": ["./plugins/blender.js"]
}

Requirements

  • Blender (any version supported by blender-mcp add-on)
  • blender-mcp add-on installed and TCP server running (default localhost:9876)

Tools Provided

| Tool | Description | |------|-------------| | blender_execute_blender_code | Execute arbitrary Python in Blender | | blender_execute_blender_code_for_cli | Execute code via blender --background | | blender_get_blendfile_summary_datablocks | Data-block counts, render engine, workspace | | blender_get_blendfile_summary_missing_files | Missing external file references | | blender_get_blendfile_summary_of_linked_libraries | Linked library tree | | blender_get_blendfile_summary_path_info | Path, save status, age, backups | | blender_get_blendfile_summary_usage_guess | Use-case scoring (0-100) | | blender_get_objects_summary | Collection hierarchy and objects | | blender_get_object_detail_summary | Single object detail | | blender_get_python_api_docs | Blender Python API reference lookup | | blender_search_api_docs | Full-text search of API reference | | blender_search_manual_docs | Full-text search of Blender manual | | blender_get_screenshot_of_window_as_image | Window screenshot PNG | | blender_get_screenshot_of_window_as_json | Window layout JSON | | blender_get_screenshot_of_area_as_image | Area screenshot PNG | | blender_jump_to_tab_by_name | Switch workspace | | blender_jump_to_tab_by_space_type | Switch workspace by space type | | blender_jump_to_view3d_object_by_name | Focus 3D viewport on object | | blender_jump_to_view3d_object_data_by_name | Focus 3D viewport on data block | | blender_render_thumbnail_to_path | Low-quality thumbnail render | | blender_render_viewport_to_path | Full viewport render |

Environment variables

  • BLENDER_MCP_HOST — Blender add-on host (default: localhost)
  • BLENDER_MCP_PORT — Blender add-on port (default: 9876)
  • BLENDER_BIN — Blender binary path for CLI tools (default: blender)

License

MIT