🌳 Git Worktree Toolbox is a MCP server and CLI for managing git worktrees.
Create isolated workspaces without the hassle of stashing changes and switching branches.
Ideal for AI-assisted development workflows requiring multiple features in parallel.
As a backup, use the gwtree
command to run any of the mcp tools yourself.
list
- List projects and their worktreesnew
- Create a new worktree with a matching brancharchive
- Archive worktrees and branchesgo
- Open worktree folder in your editorchanges
- Review changes and optionally commit and pushgrab
- Pull in changes from a specific worktreepr
- Generate a link to create a pull/merge requestdoctor
- Fix worktree metadata issuesclean
- Archive unused worktrees
Once the MCP server is added, here's how you might phrase requests to activate each tool:
- List worktrees: "List worktrees", "Show me all my projects and worktrees", "What worktrees do I have?"
- Create new worktree: "New worktree for fixing the login bug", "Set up a new workspace for the user dashboard feature", "Make a worktree for the API refactor"
- Archive worktree: "Archive this worktree", "Clean up the completed feature worktree", "Remove the old worktree and its branch"
- Open worktree: "Open the login bug worktree in my editor", "Switch to the dashboard worktree", "Go to the API refactor workspace"
- Review/Push changes: "Show changes from task-245", "What files have I modified?", "Push changes for task-245"
- Grab changes: "Get login bug worktree changes", "Merge updates from the dashboard branch", "Pull in changes from the API worktree"
- Create PR: "Generate a pull request link", "Create a merge request for task-245", "Make a PR for the current changes"
- Fix issues: "Fix my worktree metadata", "Repair worktree configuration", "Doctor the worktree setup"
- Clean up: "Clean unused worktrees", "Archive old worktrees", "Remove completed worktrees"
Add the MCP Server to Cursor / Claude Desktop:
{
"mcpServers": {
"git-worktree-toolbox": {
"command": "npx",
"args": ["-y", "git-worktree-toolbox@latest"]
}
}
}
The gwtree
CLI is also available after a global installation:
npm install -g git-worktree-toolbox
Run gwtree help
to see the available tools and their flags.
CLI commands
# List all projects with worktrees
gwtree list
# Create a new worktree with a matching branch
gwtree new "Fix login bug and flow"
# Archive current worktree (with branch removal)
gwtree archive -r
# Open current worktree and branch in editor
gwtree go
# Show the changes from all associated worktrees
gwtree changes
# Pull in changes from a specific worktree
gwtree grab fix-login-bug-1242
# Commit and push changes in a specific worktree
gwtree changes fix-login-bug-1242 -c
# Generate a link to create a pull/merge request
gwtree pr
# Fix worktree metadata issues
gwtree doctor
# Archive unused worktrees
gwtree clean
# Show help with advanced flag usage examples
gwtree help
Configure the worktrees folder and project directories (optional):
# Storage directory for worktrees and metadata files
# Default: ~/.gwtree/worktrees
BASE_WORKTREES_PATH=~/my-custom-worktrees
# Custom project directories for discovery (colon-separated)
PROJECT_DIRECTORIES="$HOME/custom-projects:$HOME/work"