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

voxel-plugin-tools

v0.4.0

Published

Voxel Plugin actions for ue-mcp. Cited to the C++ headers each action wraps; full reference under docs/.

Readme

voxel-plugin-tools

Voxel Plugin actions for ue-mcp.

Design

Every action wraps exactly one host ue-mcp call. Orchestrations (spawn-then-configure, build-this-PCG-graph, splice-a-node) ship as flows, not as composite tasks. That keeps each action small, predictable, and rollback-friendly; the orchestration layer is where multi-step semantics live.

Full Voxel Plugin API reference under docs/.

What ships

60 actions across three host categories, plus one flow. Each action surfaces as <category>(action="voxel_<name>", …) and cites the C++ header it wraps. The authoritative list — every action, its parameters, and the header it maps to — is the manifest, ue-mcp.plugin.yml; the full API reference is under docs/.

Actions by group

| Host category | Group | Count | Examples | |---|---|---:|---| | level | Spawns (AVoxelWorld, stamp/sculpt/baker/debug actors) | 6 | voxel_spawn_world, voxel_spawn_volume_sculpt_actor | | level | World lifecycle & status (AVoxelWorld) | 7 | voxel_is_world_ready, voxel_create_runtime | | level | World config (LayerStack, MegaMaterial, VoxelSize, Nanite/Nav/Lumen, LODQuality) | 7 | voxel_set_world_layer_stack, voxel_set_world_lod_quality | | level | Volume sculpting (AVoxelVolumeSculptActor) | 10 | voxel_volume_sculpt_sphere, voxel_volume_apply_sculpt_graph | | level | Height sculpting (AVoxelHeightSculptActor) | 7 | voxel_height_sculpt_height, voxel_height_flatten | | level | Stamps (heightmap, graph, mesh, spline + components) | 8 | voxel_set_heightmap_stamp, voxel_set_mesh_stamp | | level | Sculpt persistence (external save assets) | 2 | voxel_set_sculpt_save_asset, voxel_get_sculpt_save_asset | | level | Query & export | 3 | voxel_query_voxel_layer, voxel_export_voxel_data_to_render_target | | level | Instanced stamps (UVoxelInstancedStampComponent) | 5 | voxel_add_instanced_stamp_component, voxel_count_instanced_stamps | | level | No-clipping (UVoxelNoClippingComponent) | 2 | voxel_add_no_clipping_component, voxel_set_no_clipping_layer | | asset | Create / configure Voxel assets | 2 | voxel_create_asset, voxel_set_asset_property | | pcg | VoxelPCG nodes | 1 | voxel_pcg_add_node (15 node types) |

Flows

| Flow | Sequence | |----------------------|----------| | voxel_hello_world | voxel.spawn_worldlevel.set_actor_property LayerStack (bundled default) |

0-to-1 workflow

flow(action="run", flowName="voxel_hello_world",
     params={ label: "MyVoxelWorld" })

Spawns an AVoxelWorld and assigns the plugin-bundled /Voxel/Default/DefaultStack.DefaultStack so the actor renders. The flow threads the spawned actor's label from step 1 into step 2 via flowkit's ${steps.1.data.actorLabel} reference.

Poll readiness:

level(action="voxel_is_world_ready", actorLabel="MyVoxelWorld")
# => { ..., returnValues: { ReturnValue: "true" } }

The return is the raw editor.invoke_function result — parse data.returnValues.ReturnValue === "true" on the caller side. Loop on the agent's side; flows don't poll.

Install

ue-mcp plugin install voxel-plugin-tools

Adds an entry under plugins: in your ue-mcp.yml. Restart ue-mcp.

Requirements

  • ue-mcp >= 1.0.15
  • Voxel Plugin enabled in your .uproject (Plugins[].Name == "Voxel")

Develop

git clone https://github.com/db-lyon/voxel-plugin-tools.git
cd voxel-plugin-tools
npm install
npm run build

License

MIT - see LICENSE.