What problem does it solve?
Loading many MCP tool schemas into the main Claude Code context causes major token overhead and slows multi-step tool workflows.
Core Features & Use Cases
- Subagent code execution for tool composition: Offloads multi-tool sequencing to a disposable subagent that writes and runs TypeScript or Python to call MCP tools dynamically.
- Token-saving workflow orchestration: Keeps the main context free of MCP server/tool schema bloat while still enabling end-to-end multi-tool operations.
- Built-in patterns for real tasks: Supports common orchestration needs like file batch processing, parallel requests, retry/fallback logic, conditional tool routing, and multi-source aggregation.
- Use Case: “Read all JSON files in /tmp/data, aggregate the contents, and store results in a database” while keeping the main agent lightweight and focused on orchestration.
Quick Start
Ask Claude Code to “Read all JSON files in /tmp/data, aggregate the data, and store it in database table aggregated_data.”