JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q50272F
  • License MIT

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

Package Exports

  • @pulseengine/studio-mcp-server
  • @pulseengine/studio-mcp-server/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@pulseengine/studio-mcp-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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

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

📄 License

MIT License - see the LICENSE file for details.