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

ue-mcp

v0.4.27

Published

Unreal Engine MCP server — 19 tools, 300+ actions for AI-driven editor control

Readme

UE-MCP

Unreal Engine Model Context Protocol Server — gives AI assistants deep read/write access to the Unreal Editor through 19 category tools covering 300+ actions.

flowchart LR
    AI[AI Assistant] -->|stdio| MCP[MCP Server<br/>TypeScript / Node.js]
    MCP -->|WebSocket<br/>JSON-RPC| Plugin[C++ Bridge Plugin<br/>inside Unreal Editor]
    Plugin -->|UE API| Editor[Editor Subsystems]
    MCP -->|direct fs| FS[Config INI<br/>C++ Headers<br/>Asset Listing]

Blueprints, materials, levels, actors, animation, VFX, landscape, PCG, foliage, audio, UI, physics, navigation, AI, GAS, networking, sequencer, build pipeline — all programmable through natural language.

Quick Start

npx ue-mcp init

The interactive setup will:

  1. Find your .uproject (auto-detects in current directory)
  2. Let you choose which tool categories to enable
  3. Deploy the C++ bridge plugin to your project
  4. Enable required UE plugins (Niagara, PCG, GAS, etc.)
  5. Detect and configure your MCP client (Claude Code, Claude Desktop, Cursor)

Restart the editor once after setup to load the bridge plugin. To update later: npx ue-mcp update

Then ask your AI:

project(action="get_status")        — verify connection
level(action="get_outliner")        — see what's in the level
asset(action="list")                — browse project assets

Manual Configuration

If you prefer to configure manually, add to your MCP client config:

{
  "mcpServers": {
    "ue-mcp": {
      "command": "npx",
      "args": ["ue-mcp", "C:/path/to/MyGame.uproject"]
    }
  }
}

Documentation

db-lyon.github.io/ue-mcp

What Can It Do?

| Category | Examples | |----------|----------| | Levels | Place/move/delete actors, spawn lights and volumes, manage splines | | Blueprints | Read/write graphs, add nodes, connect pins, compile | | Materials | Create materials and instances, author expression graphs | | Assets | CRUD, import meshes/textures/animations, datatables | | Animation | Anim blueprints, montages, blendspaces, skeletons | | VFX | Niagara systems, emitters, parameters | | Landscape | Sculpt terrain, paint layers, import heightmaps | | PCG | Author and execute Procedural Content Generation graphs | | Gameplay | Physics, collision, navigation, behavior trees, EQS, perception | | GAS | Gameplay Ability System — attributes, abilities, effects, cues | | Networking | Replication, dormancy, relevancy, net priority | | UI | UMG widgets, editor utility widgets and blueprints | | Editor | Console, Python, PIE, viewport, sequencer, build pipeline, logs | | Reflection | Class/struct/enum introspection, gameplay tags |

Supported Versions

Tested with UE 5.4–5.7. Requires PythonScriptPlugin (ships with UE 4.26+).

Contributing

Issues and pull requests welcome. If an AI agent had to fall back to execute_python during your session, it will offer to submit structured feedback automatically — this helps us prioritize which native handlers to add next.

License

MIT — see LICENSE.