tree-sitter-analyzer 0.9.9__py3-none-any.whl → 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tree-sitter-analyzer might be problematic. Click here for more details.

@@ -1,30 +1,30 @@
1
- #!/usr/bin/env python3
2
- """
3
- MCP Tools package for Tree-sitter Analyzer
4
-
5
- This package contains all MCP tools that provide specific functionality
6
- through the Model Context Protocol.
7
- """
8
-
9
- from typing import Any
10
-
11
- __version__ = "1.0.0"
12
-
13
- # Tool registry for easy access
14
- AVAILABLE_TOOLS: dict[str, dict[str, Any]] = {
15
- "analyze_code_scale": {
16
- "description": "Analyze code scale, complexity, and structure metrics",
17
- "module": "analyze_scale_tool",
18
- "class": "AnalyzeScaleTool",
19
- },
20
- # Future tools will be added here
21
- # "read_code_partial": {
22
- # "description": "Read partial content from code files",
23
- # "module": "read_partial_tool",
24
- # "class": "ReadPartialTool",
25
- # },
26
- }
27
-
28
- __all__ = [
29
- "AVAILABLE_TOOLS",
30
- ]
1
+ #!/usr/bin/env python3
2
+ """
3
+ MCP Tools package for Tree-sitter Analyzer
4
+
5
+ This package contains all MCP tools that provide specific functionality
6
+ through the Model Context Protocol.
7
+ """
8
+
9
+ from typing import Any
10
+
11
+ __version__ = "1.0.0"
12
+
13
+ # Tool registry for easy access
14
+ AVAILABLE_TOOLS: dict[str, dict[str, Any]] = {
15
+ "analyze_code_scale": {
16
+ "description": "Analyze code scale, complexity, and structure metrics",
17
+ "module": "analyze_scale_tool",
18
+ "class": "AnalyzeScaleTool",
19
+ },
20
+ # Future tools will be added here
21
+ # "read_code_partial": {
22
+ # "description": "Read partial content from code files",
23
+ # "module": "read_partial_tool",
24
+ # "class": "ReadPartialTool",
25
+ # },
26
+ }
27
+
28
+ __all__ = [
29
+ "AVAILABLE_TOOLS",
30
+ ]