Skip to content

v0.2.2 - Fixed NPM Package Cross-Compilation

Choose a tag to compare

@avrabe avrabe released this 27 Jul 16:01
· 32 commits to main since this release

πŸ”§ Fixed NPM Package Release

πŸ› οΈ Cross-Compilation Fixes

  • Simplified target platforms to x64 only (Windows, macOS, Linux)
  • Removed ARM64 targets that had keyring dependency conflicts
  • Streamlined build process for faster, more reliable releases
  • Better error handling for unsupported architectures

πŸ“¦ NPM Package Now Available

# Run instantly with npx (no installation needed)
npx @pulseengine/studio-mcp-server --help
npx @pulseengine/studio-mcp-server --port 8080

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

πŸ”Œ MCP Client Configuration

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

🎯 Supported Platforms

  • βœ… Windows x64 (x86_64-pc-windows-msvc)
  • βœ… macOS x64 (x86_64-apple-darwin)
  • βœ… Linux x64 (x86_64-unknown-linux-gnu)

πŸ“‹ Fallback for ARM64

For Apple Silicon and ARM64 Linux, install from source:

cargo install --git https://github.com/pulseengine/studio-mcp.git studio-mcp-server

This release prioritizes stability and broad compatibility for the npm ecosystem.

Full Changelog: v0.2.1...v0.2.2