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

@babylonjs/mcp-servers

v9.16.1

Published

Bundled Model Context Protocol servers for Babylon.js authoring workflows

Readme

Babylon.js MCP Servers

@babylonjs/mcp-servers packages the Babylon.js Model Context Protocol servers as executable Node.js binaries. MCP-compatible clients can use these servers to create, edit, validate, import, export, and live-sync Babylon.js authoring graphs.

Included Servers

| Server | Dispatcher name | Direct binary | Purpose | | ------------------------ | --------------- | ------------------------------------ | ------------------------------------------------------------------------ | | Node Material Editor | nme | babylonjs-nme-mcp-server | Node Material graph authoring and import/export workflows. | | Node Geometry Editor | nge | babylonjs-nge-mcp-server | Node Geometry graph authoring and export/import workflows. | | Node Render Graph Editor | nrge | babylonjs-nrge-mcp-server | Node Render Graph authoring and render-pipeline export/import workflows. | | Node Particle Editor | npe | babylonjs-npe-mcp-server | Node Particle graph authoring and export/import workflows. | | GUI Editor | gui | babylonjs-gui-mcp-server | Babylon.js GUI authoring, layout, export/import, and snippet flows. | | Flow Graph Editor | flow-graph | babylonjs-flow-graph-mcp-server | Flow Graph authoring and coordinator JSON export/import workflows. | | Smart Filters Editor | smart-filters | babylonjs-smart-filters-mcp-server | Smart Filters graph authoring and export/import workflows. |

Run With npx

Use the dispatcher when you want a compact command:

npx -y @babylonjs/mcp-servers nme

Use direct binaries when your MCP client expects a command name:

npx -y -p @babylonjs/mcp-servers babylonjs-nme-mcp-server

MCP Client Configuration

Most MCP clients accept a command plus arguments. This example starts the Node Material Editor MCP server through the dispatcher:

{
    "mcpServers": {
        "babylonjs-node-material": {
            "command": "npx",
            "args": ["-y", "@babylonjs/mcp-servers", "nme"]
        }
    }
}

This equivalent form uses the direct binary:

{
    "mcpServers": {
        "babylonjs-node-material": {
            "command": "npx",
            "args": ["-y", "-p", "@babylonjs/mcp-servers", "babylonjs-nme-mcp-server"]
        }
    }
}

Live Editor Sessions

The graph MCP servers can start a local editor session server and return a session URL. Paste that URL into the matching Babylon.js editor's MCP session panel to see live updates from the MCP server and to push editor changes back to the MCP server.

The local editor session server binds to 127.0.0.1 by default. It stops when the MCP process exits, when the stop_session_server MCP tool is called, or after 15 minutes without MCP/editor activity.

Local Development

From the Babylon.js repository, build the package with:

npm run build -w @babylonjs/mcp-servers

The build compiles the private MCP server workspaces and copies their bundled dist/index.js outputs into this package's dist/ directory.