maestro@4.0.0
🚨 Breaking Change
Major Changes
-
#208 c1a6361 Thanks @camoneart! - Remove obsolete
mcpcommand and add dedicated MCP server binaryThe
mcpcommand has been removed as it became obsolete with the introduction of the modernclaude mcp addcommand 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-serveris now a standalone executable - Simplified CLI: Removed unnecessary complexity by eliminating the obsolete
mcpcommand - 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/maestroFixes #207