Skip to content

maestro@4.0.0

Choose a tag to compare

@mirinodev mirinodev released this 05 Aug 02:00
· 3 commits to main since this release
a847c03

🚨 Breaking Change

Major Changes

  • #208 c1a6361 Thanks @camoneart! - Remove obsolete mcp command and add dedicated MCP server binary

    The mcp command has been removed as it became obsolete with the introduction of the modern claude mcp add command which automatically manages the MCP server lifecycle.

🔄 Migration Guide

Users no longer need to manually start the MCP server with mst mcp serve. Instead, use the new setup:

Setup for different scopes:

# Local scope (default - current project only)
claude mcp add maestro -- npx -y @camoneart/maestro maestro-mcp-server

# Project scope (saved in .mcp.json for team sharing)
claude mcp add maestro -s project -- npx -y @camoneart/maestro maestro-mcp-server

# User scope (all projects on machine)
claude mcp add maestro -s user -- npx -y @camoneart/maestro maestro-mcp-server

# For global installation
claude mcp add maestro -s user -- maestro-mcp-server

✨ What's New

  • Dedicated MCP server binary: maestro-mcp-server is now a standalone executable
  • Simplified CLI: Removed unnecessary complexity by eliminating the obsolete mcp command
  • Modern MCP practices: Aligns with Claude Code's automatic server lifecycle management

📦 Installation

# npm
npm install -g @camoneart/maestro@4.0.0

# pnpm
pnpm add -g @camoneart/maestro@4.0.0

# Homebrew
brew upgrade camoneart/tap/maestro

Fixes #207