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

@pulseengine/studio-mcp-server

v0.4.0

Published

WindRiver Studio MCP Server - A Model Context Protocol server for WindRiver Studio CLI integration

Readme

@pulseengine/studio-mcp-server

A Model Context Protocol (MCP) server for WindRiver Studio CLI integration, packaged for npm/npx usage.

🚀 Quick Start with npx (No Installation Required)

# Run directly with npx
npx @pulseengine/studio-mcp-server --help

# Start MCP server
npx @pulseengine/studio-mcp-server --port 8080

# Use with specific Studio instance
npx @pulseengine/studio-mcp-server --instance my-studio --user developer

📦 Global Installation

# Install globally
npm install -g @pulseengine/studio-mcp-server

# Then run directly
studio-mcp-server --help
studio-mcp # Short alias

🔧 MCP Client Configuration

Add to your MCP client configuration (e.g., Claude Desktop):

Using npx (Recommended)

{
  "mcpServers": {
    "studio": {
      "command": "npx",
      "args": ["@pulseengine/studio-mcp-server", "--instance", "your-studio-instance"]
    }
  }
}

Using global installation

{
  "mcpServers": {
    "studio": {
      "command": "studio-mcp-server",
      "args": ["--instance", "your-studio-instance"]
    }
  }
}

⚡ Features

  • Zero-config MCP server for WindRiver Studio
  • Intelligent caching with multi-tier TTL policies
  • User context isolation for secure multi-tenant usage
  • PLM integration with pipeline, run, and resource management
  • Cross-platform support (Windows, macOS, Linux)
  • Pre-compiled binaries - no Rust installation required

🛠️ Development

This npm package wraps a Rust binary. For development:

git clone https://github.com/pulseengine/studio-mcp.git
cd studio-mcp/studio-mcp-server
cargo build --release

📋 Requirements

  • Node.js >= 14
  • One of: Windows (x64), macOS (x64/ARM64), Linux (x64/ARM64)

🐛 Troubleshooting

If installation fails:

  1. Manual installation from source:

    git clone https://github.com/pulseengine/studio-mcp.git
    cd studio-mcp/studio-mcp-server
    cargo install --path .
  2. Download binary manually:

    • Visit: https://github.com/pulseengine/studio-mcp/releases
    • Download for your platform and add to PATH

📄 License

MIT License - see the LICENSE file for details.