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
Copy file name to clipboardExpand all lines: README.md
+64Lines changed: 64 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -553,6 +553,70 @@ search_codebase({
553
553
- Best for complex queries beyond simple search/traversal
554
554
- Currently in development - may require setup
555
555
556
+
## Claude Code Integration Tips
557
+
558
+
### Guiding Tool Usage with claude.md
559
+
560
+
You can add a `claude.md` file to your repository root to help Claude Code understand when to use these MCP tools effectively. Here are some useful patterns:
561
+
562
+
#### Trigger Word Hints
563
+
564
+
```markdown
565
+
## Code Search Tools
566
+
567
+
**Use `search_codebase` for:**
568
+
- "Where is...", "Find...", "Show me [specific thing]"
569
+
- Example: "Where is the authentication middleware?"
570
+
571
+
**Use `natural_language_to_cypher` for:**
572
+
- "List all...", "How many...", "Count..."
573
+
- Example: "List all API controllers"
574
+
575
+
**Use `traverse_from_node` for:**
576
+
- Deep dependency analysis after initial search
577
+
- "What depends on X?", "Trace the flow..."
578
+
```
579
+
580
+
#### Weighted Traversal Hints
581
+
582
+
```markdown
583
+
**Use `useWeightedTraversal: true` for:**
584
+
- Service/Controller classes with many dependencies
0 commit comments