codegraphcontext 0.1.19__tar.gz → 0.1.20__tar.gz
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.
- {codegraphcontext-0.1.19/src/codegraphcontext.egg-info → codegraphcontext-0.1.20}/PKG-INFO +3 -3
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/README.md +1 -1
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/pyproject.toml +2 -2
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20/src/codegraphcontext.egg-info}/PKG-INFO +3 -3
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/LICENSE +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/MANIFEST.in +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/setup.cfg +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/__init__.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/__main__.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/cli/__init__.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/cli/cli_helpers.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/cli/main.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/cli/setup_macos.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/cli/setup_wizard.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/core/__init__.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/core/database.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/core/database_falkordb.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/core/falkor_worker.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/core/jobs.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/core/watcher.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/prompts.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/server.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/__init__.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/advanced_language_query_tool.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/code_finder.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/graph_builder.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/c.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/cpp.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/csharp.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/go.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/java.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/javascript.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/php.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/python.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/ruby.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/rust.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/typescript.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/package_resolver.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/c_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/cpp_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/csharp_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/go_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/java_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/javascript_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/python_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/ruby_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/rust_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/query_tool_languages/typescript_toolkit.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/system.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/utils/debug_log.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/utils/tree_sitter_manager.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext.egg-info/SOURCES.txt +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext.egg-info/dependency_links.txt +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext.egg-info/entry_points.txt +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext.egg-info/requires.txt +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext.egg-info/top_level.txt +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/tests/test_cpp_parser.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/tests/test_database_validation.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/tests/test_end_to_end.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/tests/test_graph_indexing.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/tests/test_graph_indexing_js.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/tests/test_tree_sitter_manager.py +0 -0
- {codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/tests/test_typescript_parser.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codegraphcontext
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.20
|
|
4
4
|
Summary: An MCP server that indexes local code into a graph database to provide context to AI assistants.
|
|
5
5
|
Author-email: Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -33,7 +33,7 @@ Classifier: Operating System :: OS Independent
|
|
|
33
33
|
Classifier: Development Status :: 3 - Alpha
|
|
34
34
|
Classifier: Intended Audience :: Developers
|
|
35
35
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
36
|
-
Requires-Python: >=3.
|
|
36
|
+
Requires-Python: >=3.10
|
|
37
37
|
Description-Content-Type: text/markdown
|
|
38
38
|
License-File: LICENSE
|
|
39
39
|
Requires-Dist: neo4j>=5.15.0
|
|
@@ -91,7 +91,7 @@ An MCP server that indexes local code into a graph database to provide context t
|
|
|
91
91
|

|
|
92
92
|
|
|
93
93
|
## Project Details
|
|
94
|
-
- **Version:** 0.1.
|
|
94
|
+
- **Version:** 0.1.20
|
|
95
95
|
- **Authors:** Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
|
|
96
96
|
- **License:** MIT License (See [LICENSE](LICENSE) for details)
|
|
97
97
|
- **Website:** [CodeGraphContext](http://codegraphcontext.vercel.app/)
|
|
@@ -29,7 +29,7 @@ An MCP server that indexes local code into a graph database to provide context t
|
|
|
29
29
|

|
|
30
30
|
|
|
31
31
|
## Project Details
|
|
32
|
-
- **Version:** 0.1.
|
|
32
|
+
- **Version:** 0.1.20
|
|
33
33
|
- **Authors:** Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
|
|
34
34
|
- **License:** MIT License (See [LICENSE](LICENSE) for details)
|
|
35
35
|
- **Website:** [CodeGraphContext](http://codegraphcontext.vercel.app/)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codegraphcontext"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.20"
|
|
4
4
|
description = "An MCP server that indexes local code into a graph database to provide context to AI assistants."
|
|
5
5
|
authors = [{ name = "Shashank Shekhar Singh", email = "shashankshekharsingh1205@gmail.com" }]
|
|
6
6
|
readme = "README.md"
|
|
7
7
|
license = { file = "LICENSE" }
|
|
8
|
-
requires-python = ">=3.
|
|
8
|
+
requires-python = ">=3.10"
|
|
9
9
|
classifiers = [
|
|
10
10
|
"Programming Language :: Python :: 3",
|
|
11
11
|
"License :: OSI Approved :: MIT License",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codegraphcontext
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.20
|
|
4
4
|
Summary: An MCP server that indexes local code into a graph database to provide context to AI assistants.
|
|
5
5
|
Author-email: Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -33,7 +33,7 @@ Classifier: Operating System :: OS Independent
|
|
|
33
33
|
Classifier: Development Status :: 3 - Alpha
|
|
34
34
|
Classifier: Intended Audience :: Developers
|
|
35
35
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
36
|
-
Requires-Python: >=3.
|
|
36
|
+
Requires-Python: >=3.10
|
|
37
37
|
Description-Content-Type: text/markdown
|
|
38
38
|
License-File: LICENSE
|
|
39
39
|
Requires-Dist: neo4j>=5.15.0
|
|
@@ -91,7 +91,7 @@ An MCP server that indexes local code into a graph database to provide context t
|
|
|
91
91
|

|
|
92
92
|
|
|
93
93
|
## Project Details
|
|
94
|
-
- **Version:** 0.1.
|
|
94
|
+
- **Version:** 0.1.20
|
|
95
95
|
- **Authors:** Shashank Shekhar Singh <shashankshekharsingh1205@gmail.com>
|
|
96
96
|
- **License:** MIT License (See [LICENSE](LICENSE) for details)
|
|
97
97
|
- **Website:** [CodeGraphContext](http://codegraphcontext.vercel.app/)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/cli/setup_wizard.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/core/database_falkordb.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/core/falkor_worker.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/code_finder.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/graph_builder.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/c.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/cpp.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/csharp.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/go.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/java.py
RENAMED
|
File without changes
|
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/php.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/python.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/ruby.py
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/languages/rust.py
RENAMED
|
File without changes
|
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext/tools/package_resolver.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext.egg-info/requires.txt
RENAMED
|
File without changes
|
{codegraphcontext-0.1.19 → codegraphcontext-0.1.20}/src/codegraphcontext.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|