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

mindstorms-robot-creator

v0.2.0

Published

Build, code, and control LEGO MINDSTORMS robots with AI. Browser app, desktop installer, Android app, and MCP server.

Readme

Mindstorms Robot Creator

Build, code, and control LEGO MINDSTORMS robots with AI.
Browser app · Desktop installer · Android app · MCP server

🌐 Live Web App  |  📱 Android Repo


npm GitHub release Android CI Pages License: MIT F-Droid


⬇ Download

| Platform | Link | |---|---| | Windows installer (.exe) | ⬇ mindstorms-robot-creator-setup.exe | | macOS (.dmg) | ⬇ GitHub Releases | | Linux (.AppImage) | ⬇ GitHub Releases | | Android APK | ⬇ app-release.apk | | npm (MCP server) | npx mindstorms-robot-creator | | Browser / PWA | eoinjordan.github.io/mindstorms-robot-creator |


Code generator demo


Features

  • Code Generator — pick a robot, pick an intent (beep, probe, drive, wave), get Pybricks or LEGO Stock Python in one click. Download as .lms file ready to load in the LEGO app.
  • Builder Session — human-in-the-loop debug loop: propose one safe test, record what happened, get the next suggestion.
  • Connect — Bluetooth (BLE, recommended) or USB Web Serial. Stock LEGO firmware supported via LWP3; full REPL with Pybricks.
  • Voice KWS — load an Edge Impulse WebAssembly keyword-spotting model and control the robot by voice.
  • MCP Server — 14 tools for AI agents (Claude Desktop, VS Code Copilot, Cursor). Zero runtime dependencies.

Screenshots

| Code Generator | Connect via Bluetooth | |---|---| | Code tab | Connect tab |

| Builder Session | Voice KWS | |---|---| | Builder tab | Voice tab |


Quick Start

Browser / PWA

npx serve web-app
# then open http://localhost:3000 in Chrome or Edge

Or visit the hosted version: https://eoinjordan.github.io/mindstorms-robot-creator/

MCP Server (Claude Desktop / VS Code Copilot)

npx -y mindstorms-robot-creator

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mindstorms-robot-creator": {
      "command": "npx",
      "args": ["-y", "mindstorms-robot-creator"]
    }
  }
}

Or in .vscode/mcp.json:

{
  "servers": {
    "mindstorms-robot-creator": {
      "type": "stdio",
      "command": "node",
      "args": ["${workspaceFolder}/mcp-server.js"]
    }
  }
}

Desktop App (Windows .exe)

Download the latest installer from Releases.

Or build locally:

npm run electron:build:win

MCP Tools

| Tool | Description | |---|---| | robot_scan | List all available robot profiles | | robot_describe | Get port map, motors, sensors, capabilities | | robot_classify | Classify probe telemetry into a morphology label | | builder_session_start | Start a human-in-the-loop debug session | | builder_session_append | Record an observation or debug note | | builder_session_summary | Summarize session and suggest next action | | official_client_handoff | Get handoff steps for the LEGO or Pybricks app | | probe_plan_create | Generate a safe probing plan | | probe_run | Execute a probe and capture telemetry | | dataset_export | Export sessions as Edge Impulse JSON/CSV | | code_generate | Generate Pybricks or LEGO Stock Python | | lms_write | Create a .lms project file | | lms_read | Read and inspect an .lms file |


Hardware Support

| Family | Priority | Connection | |---|---|---| | Robot Inventor 51515 | 1 | BLE / USB (Pybricks or LWP3) | | SPIKE Prime | 2 | BLE / USB | | EV3 | 3 | USB, Bluetooth, Wi-Fi | | NXT | 4 | Bluetooth Classic / USB |


Android App

The Android companion app is in a separate repo:
https://github.com/eoinjordan/mindstorms-robot-creator-android

  • Kotlin + Jetpack Compose (Material 3)
  • BLE + USB transport, Room session history, Edge Impulse voice KWS
  • F-Droid submission in progress (metadata)

npm Publish

npm login
npm publish --access public

The package ships: server.js, mcp-server.js, cli.js, adapters/, schemas/, examples/, web-app/.


License

MIT — see LICENSE

  • Voice KWS — load an Edge Impulse WebAssembly keyword-spotting model and control the robot by voice.