What problem does it solve?
Build isolation for tool development: implement a new tdmcp tool from a full specification while touching only new files, ensuring changes are self-contained and safe to develop in parallel without modifying shared registries.
Core Features & Use Cases
- Canonical tool-file pattern: each tool exports a pure
…Impl and a register… function together with a bridge payload script and offline msw unit tests, enabling isolated, repeatable builds.
- Strict isolation for parallel development: no edits to shared registries or core tooling, allowing multiple features to be developed concurrently without risk.
- End-to-end scaffolding: provides a complete workflow from spec to test to export-ready tool, facilitating clean integration and maintainability.
Quick Start
Create a new tool file following the canonical pattern and implement a focused unit test in isolation.