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

pi-roblox-studio-tools

v0.3.0

Published

On-demand Roblox Studio MCP tools for Pi without a long-running MCP server.

Readme

Pi Roblox Studio Tools

Join dotfield.xyz on Discord

CI Publish npm version npm downloads License: MIT Pi package npm Provenance

On-demand Roblox Studio MCP tools for Pi without a long-running MCP server.

What this is

Pi Roblox Studio Tools adds Pi-native tools for working with Roblox Studio MCP while avoiding an always-on MCP server process.

The package locates the official StudioMCP command on Windows and macOS. MCP tools spawn StudioMCP only when a Pi tool call needs it, then shut it down after the request.

Features

  • Cross-platform StudioMCP path detection for Windows and macOS
  • Pi command: /roblox-studio-mcp-status
  • Pi tool: roblox_studio_mcp_status with initialize probe
  • Pi tool: roblox_studio_mcp_list_tools for read-only tools/list inventory
  • Pi tool: roblox_studio_mcp_list_studios for read-only open Studio instance inventory
  • Distinguishes missing StudioMCP from installed-but-not-callable states
  • Capped inventory output so large tool lists or stderr cannot flood Pi context
  • No persistent MCP process by default
  • No generic mutation tools/call wrapper in this package slice
  • TypeScript-first Pi package structure

Install

Install the published npm package with Pi:

pi install npm:pi-roblox-studio-tools

Install into the current project instead of your user Pi settings:

pi install npm:pi-roblox-studio-tools -l

Or install from GitHub:

pi install git:github.com/eiei114/pi-roblox-studio-tools

Try it without permanently installing:

pi -e npm:pi-roblox-studio-tools

Quick start

Try this package locally:

pi -e .

Then run:

/roblox-studio-mcp-status

The agent can also call:

roblox_studio_mcp_status
roblox_studio_mcp_list_tools
roblox_studio_mcp_list_studios

Status output reports whether StudioMCP was found and whether initialize succeeded. The inventory tools run only when StudioMCP is callable and return capped read-only diagnostics for exposed MCP tools and open Studio instances.

StudioMCP paths

Windows:

%LOCALAPPDATA%\Roblox\mcp.bat
%LOCALAPPDATA%\Roblox Studio\StudioMCP.exe

macOS:

/Applications/RobloxStudio.app/Contents/MacOS/StudioMCP
~/Applications/RobloxStudio.app/Contents/MacOS/StudioMCP

Package contents

| Path | Purpose | |---|---| | extensions/ | Pi TypeScript extension entrypoints | | lib/ | Shared StudioMCP discovery and one-shot stdio MCP client helpers | | skills/ | Agent Skill for Roblox Studio MCP workflow guidance | | docs/ | Architecture, release, and setup docs |

Development

npm install
npm run ci
npm pack --dry-run

npm run ci runs npm run typecheck, npm test, npm run pack:check (npm pack --dry-run), and npm run publish:guard (fails if workflow files reference NPM_TOKEN or NODE_AUTH_TOKEN). Verify that publish workflows use npm Trusted Publishing (OIDC). Run npm pack --dry-run directly when you only need to verify the published tarball contents.

Release

This package uses npm Trusted Publishing with GitHub Actions OIDC, so no NPM_TOKEN is required.

npm version patch
git push

On main, a package.json version bump triggers auto-release, which creates the tag and dispatches publish.yml.

See docs/release.md for setup details.

Security

Pi packages can execute code with your local permissions. Review extensions before installing third-party packages.

This package is designed to avoid a long-running MCP process. Studio mutation tools run without confirmation UI, so review tool names and arguments carefully.

For vulnerability reporting, see SECURITY.md.

Links

  • npm: https://www.npmjs.com/package/pi-roblox-studio-tools
  • GitHub: https://github.com/eiei114/pi-roblox-studio-tools
  • Issues: https://github.com/eiei114/pi-roblox-studio-tools/issues

License

MIT