You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add tl_structure, tl_audit, tl_deps, tl_exports.
tl_structure: project overview with token estimates; replaces ls -R patterns
tl_audit: mid-session token waste analysis with savings breakdown
tl_deps: file dependency tree without reading implementation
tl_exports: public API surface of a module or directory
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: src/mcp-tools.mjs
+56Lines changed: 56 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -183,6 +183,62 @@ export const TOOLS = [
183
183
returndispatchTool('diff',args);
184
184
},
185
185
},
186
+
{
187
+
name: 'tl_structure',
188
+
description: 'Project overview: directory tree with file counts and token estimates. Use this first when exploring an unfamiliar codebase instead of running ls -R or find.',
0 commit comments