New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@pulseengine/studio-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pulseengine/studio-mcp-server

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

latest
Source
npmnpm
Version
0.4.0
Version published
Maintainers
1
Created
Source

@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):

{
  "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:

  • Manual installation from source:

    git clone https://github.com/pulseengine/studio-mcp.git
    cd studio-mcp/studio-mcp-server
    cargo install --path .
    
  • 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.

Keywords

mcp

FAQs

Package last updated on 03 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts