Split a task into plans with disjoint file boundaries; scaffold a git worktree per plan.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Split a task into plans with disjoint file boundaries, then scaffold a git worktree per plan β so parallel agents never step on each other.
A stateless MCP server that turns a brain dump into conflict-free parallel work.
Retired
Claude Code now does this itself. Splitting work across isolated worktrees so parallel agents do not collide is built in, which is what this existed to provide.
The repository is archived and read-only. It still works β nothing was removed from npm, and the last published version keeps installing β but it will not be maintained, and it does not need to be. If you want the idea rather than the package, the whole design is in
docs/and the licence lets you take it.
Running several coding agents in parallel is fast β until two of them edit the same file and silently clobber each other's work. The fix isn't live coordination; it's separation: give each agent a set of files that don't overlap, and the conflict can't happen by design.
batuta-mcp is the brain that does that split. You hand it a brain dump; it returns plans with disjoint file boundaries, and scaffolds an isolated git worktree for each one.
It's a stateless MCP server (stdio). No database, no daemon, no web UI β just three tools that compose:
fileBoundaries don't overlap (auto-corrects once if they do).git worktree per plan, returning a ready-to-paste prompt for each β open them in separate terminals/tabs and let one agent work each, conflict-free.The "muscle" (running the agents, the terminals) stays in your editor; batuta-mcp is just the planning brain.
git worktree per plan, with a ready-to-paste prompt.dryRun previews without writing.claude CLI (no API key needed).git 2.x (for scaffold_worktrees)claude CLI, logged in (for decompose_into_plans)From npm β nothing to clone:
From source β if you want to change it:
Any MCP client works. The mcpServers entry:
For Claude Code, claude mcp add (above) writes this for you. For Warp or Cursor, paste the snippet into their MCP settings.
| Tool | Description |
|---|---|
decompose_into_plans | { brainDump, projectHint?, repoPath? } β { plans, overlapsResolved, attempts }. Splits the work into plans with disjoint boundaries (auto-corrects overlaps once). |
check_boundary_overlaps | { plans } β { overlaps, ok }. Pure check: do any plans share files? |
scaffold_worktrees | { repoPath, plans, dryRun? } β { results }. Pre-flight, then git worktree add per plan + a ready-to-paste prompt. |
decompose_into_plans β plans with disjoint boundaries.check_boundary_overlaps β confirm ok: true (or adjust).scaffold_worktrees β creates the worktrees; open each in its own terminal/tab and paste its suggestedPrompt.Built test-first across 10 TDD tasks with per-task and whole-branch review.
Read CONTRIBUTING.md first β its first line tells you whether your pull request will be considered. Vulnerabilities go to security@vorluno.dev, never to an issue: see SECURITY.md, where the 72-hour acknowledgement is the one response time we commit to.
Apache-2.0 Β© 2026 Vorluno. See NOTICE.
Up to and including 0.1.0 this was MIT. Those releases stay MIT β a licence already granted cannot be withdrawn. From 0.2.0 on it is Apache-2.0, which grants patent rights explicitly.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/batuta-mcp)<a href="https://allmcps.com/mcp/batuta-mcp"><img src="https://allmcps.com/api/badge/batuta-mcp?style=directory" alt="Batuta MCP on AllMCPs" /></a>