MCP tool that splits a file into multiple parts at specified line numbers.
Given a file and line numbers [100, 200, 300], produces 4 files: lines 1-100, 101-200, 201-300, 301-EOF. Output files are named with sequential suffixes (e.g., file_001.txt, file_002.txt).
go build -o split
sudo cp split /usr/local/bin/
codesign -s - /usr/local/bin/splitOr with just:
just installsplit --cli --file /path/to/file.txt --lines 100,200,300Add to Claude Code:
claude mcp add --transport stdio --scope user split -- splitOr with just:
just addMIT