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
Remove meta MCP tool usage examples and documentation that were
confusing and unnecessary. CLAUDE.md should focus on development
guidance, not tool usage instructions for AI assistants.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CLAUDE.md
+1-71Lines changed: 1 addition & 71 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,7 @@ uv run mypy .
55
55
## Version Management
56
56
57
57
- To bump the version use uv version --bump <patch|minor|major> commit (only the changes to pyproject.toml) push, and monitor the workflow run to verify it actually gets deployed.
58
+
-**IMPORTANT**: The deployment workflow is triggered by git tags, not pushes. After pushing version changes, create and push a tag: `git tag v<version> && git push origin v<version>`
58
59
59
60
## Architecture Overview
60
61
@@ -118,74 +119,3 @@ New languages require:
118
119
119
120
The system automatically detects language from file extensions and falls back gracefully for unsupported languages.
120
121
121
-
## MCP Tools Interface
122
-
123
-
The server exposes 5 tools to AI assistants:
124
-
125
-
1.**`get_symbols`** - Primary entry point for code discovery (uses modern core library)
126
-
2.**`get_function`** - Extract specific functions (legacy tree traversal)
127
-
3.**`get_class`** - Extract specific classes (legacy tree traversal)
128
-
4.**`get_lines`** - Extract line ranges by number
129
-
5.**`get_signature`** - Get function signatures only
130
-
131
-
**Best Practice**: Always use `get_symbols` first for code exploration, then use specific extraction tools for detailed analysis.
132
-
133
-
### URL Support
134
-
135
-
All 5 MCP tools support URLs for fetching remote code:
0 commit comments