@realeng/maestro
v0.13.0
Published
Easy setup and management for local MCP servers
Maintainers
Readme
Maestro MCP Manager
Easy setup and management for local MCP (Model Context Protocol) servers.
Installation
Install from npm
npm install -g @realeng/maestromacOS Users - Download & Click Installation
- Download the latest
maestro-macos-vX.X.X.zipfrom Releases - Unzip the file
- Double-click
1-install-maestro.commandto install Maestro - Double-click
2-configure-servers.commandto set up your MCP servers
macOS Users - From Source
- Clone this repository
- Double-click
1-install-maestro.commandto install Maestro - Double-click
2-configure-servers.commandto set up your MCP servers
Manual Installation from Source
- Clone this repository
- Install globally:
npm install -g .
Or install for development:
- Clone this repository
- Install dependencies:
npm install - Build the project:
npm run build - Make the CLI globally available:
npm link
Usage
Initialize MCP Servers
Configure authentication for MCP servers:
maestro initThis interactive command will:
- List available MCP servers
- Guide you through authentication setup (URLs, API tokens, etc.)
- Save credentials securely in
~/.maestro/config.json
Run MCP Servers
Start all configured MCP servers:
maestro runThis will:
- Start all enabled MCP servers
- Display port information for each server
- Keep servers running until you press Ctrl+C
- Save logs to
~/.maestro/logs/
Generate Claude Configuration
Generate configuration for Claude Desktop or Claude Code:
maestro mcp-configThis will:
- Create a JSON configuration for all your MCP servers
- Display the configuration in the terminal
- Save it to
claude-config.jsonin the current directory - Provide instructions for adding it to Claude
View Server Logs
View logs for a specific MCP server:
# Show available servers
maestro logs
# View last 50 lines of logs for a server
maestro logs youtrack
# View last 100 lines
maestro logs youtrack -n 100
# Follow logs in real-time (like tail -f)
maestro logs youtrack -f
# Clear all log files
maestro logs clearSupported MCP Servers
Currently supported:
- YouTrack - JetBrains issue tracking integration
Adding New MCP Servers
To add support for a new MCP server:
- Create a new file in
src/servers/(e.g.,github.ts) - Implement the
MCPServerDefinitioninterface:export const githubServer: MCPServerDefinition = { name: 'github', displayName: 'GitHub', description: 'GitHub integration', requiredAuth: [ { key: 'token', label: 'Personal Access Token', description: 'Your GitHub PAT', type: 'password' } ], command: (config) => ['npx', '-y', '@modelcontextprotocol/server-github'], env: (config) => ({ GITHUB_PERSONAL_ACCESS_TOKEN: config.auth.token }) }; - Register it in
src/servers/index.ts - Rebuild:
npm run build
Configuration
Maestro stores configuration in ~/.maestro/config.json. This includes:
- Server authentication credentials
- Server enable/disable status
- Optional server settings
Development
npm run dev # Run in development mode
npm run build # Build for production
npm run lint # Run linter
npm run typecheck # Type checkingSecurity
- Credentials are stored locally in your home directory
- API tokens are never logged or exposed
- Each server runs in isolation with its own environment
License
MIT
