mcp-code-indexer 4.2.0__py3-none-any.whl → 4.2.1__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.
- mcp_code_indexer/main.py +1 -1
- {mcp_code_indexer-4.2.0.dist-info → mcp_code_indexer-4.2.1.dist-info}/METADATA +11 -7
- {mcp_code_indexer-4.2.0.dist-info → mcp_code_indexer-4.2.1.dist-info}/RECORD +6 -6
- {mcp_code_indexer-4.2.0.dist-info → mcp_code_indexer-4.2.1.dist-info}/LICENSE +0 -0
- {mcp_code_indexer-4.2.0.dist-info → mcp_code_indexer-4.2.1.dist-info}/WHEEL +0 -0
- {mcp_code_indexer-4.2.0.dist-info → mcp_code_indexer-4.2.1.dist-info}/entry_points.txt +0 -0
mcp_code_indexer/main.py
CHANGED
|
@@ -1019,7 +1019,7 @@ async def main() -> None:
|
|
|
1019
1019
|
|
|
1020
1020
|
# Check if vector mode is available
|
|
1021
1021
|
if not is_vector_mode_available():
|
|
1022
|
-
logger.error("Vector mode
|
|
1022
|
+
logger.error("Vector mode dependencies not found. Try reinstalling: pip install --upgrade mcp-code-indexer")
|
|
1023
1023
|
sys.exit(1)
|
|
1024
1024
|
|
|
1025
1025
|
# Check API keys
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: mcp-code-indexer
|
|
3
|
-
Version: 4.2.
|
|
3
|
+
Version: 4.2.1
|
|
4
4
|
Summary: MCP server that tracks file descriptions across codebases, enabling AI agents to efficiently navigate and understand code through searchable summaries and token-aware overviews.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: mcp,model-context-protocol,code-indexer,ai-tools,codebase-navigation,file-descriptions,llm-tools
|
|
7
7
|
Author: MCP Code Indexer Contributors
|
|
8
8
|
Maintainer: MCP Code Indexer Contributors
|
|
9
|
-
Requires-Python: >=3.10,<
|
|
9
|
+
Requires-Python: >=3.10,<3.13
|
|
10
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
11
|
Classifier: Environment :: Console
|
|
12
12
|
Classifier: Framework :: AsyncIO
|
|
@@ -23,7 +23,6 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
|
23
23
|
Classifier: Topic :: Software Development
|
|
24
24
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
25
|
Classifier: Typing :: Typed
|
|
26
|
-
Provides-Extra: vector
|
|
27
26
|
Requires-Dist: aiofiles (==23.2.0)
|
|
28
27
|
Requires-Dist: aiohttp (>=3.8.0)
|
|
29
28
|
Requires-Dist: aiosqlite (==0.19.0)
|
|
@@ -33,10 +32,15 @@ Requires-Dist: importlib-metadata (>=1.0.0) ; python_version < "3.8"
|
|
|
33
32
|
Requires-Dist: mcp (>=1.9.0)
|
|
34
33
|
Requires-Dist: pydantic (>=2.8.0)
|
|
35
34
|
Requires-Dist: python-multipart (>=0.0.6)
|
|
35
|
+
Requires-Dist: pyyaml (>=6.0)
|
|
36
36
|
Requires-Dist: tenacity (>=8.0.0)
|
|
37
37
|
Requires-Dist: tiktoken (>=0.9.0)
|
|
38
38
|
Requires-Dist: tomli (>=1.2.0) ; python_version < "3.11"
|
|
39
|
+
Requires-Dist: tree-sitter (>=0.25.0)
|
|
40
|
+
Requires-Dist: turbopuffer (>=0.6.0)
|
|
39
41
|
Requires-Dist: uvicorn (>=0.24.0)
|
|
42
|
+
Requires-Dist: voyageai (>=0.3.0)
|
|
43
|
+
Requires-Dist: watchdog (>=6.0.0)
|
|
40
44
|
Project-URL: Documentation, https://github.com/fluffypony/mcp-code-indexer/blob/main/README.md
|
|
41
45
|
Project-URL: Homepage, https://github.com/fluffypony/mcp-code-indexer
|
|
42
46
|
Project-URL: Repository, https://github.com/fluffypony/mcp-code-indexer
|
|
@@ -44,8 +48,8 @@ Description-Content-Type: text/markdown
|
|
|
44
48
|
|
|
45
49
|
# MCP Code Indexer 🚀
|
|
46
50
|
|
|
47
|
-
[](https://badge.fury.io/py/mcp-code-indexer)
|
|
52
|
+
[](https://pypi.org/project/mcp-code-indexer/)
|
|
49
53
|
[](https://opensource.org/licenses/MIT)
|
|
50
54
|
|
|
51
55
|
A production-ready **Model Context Protocol (MCP) server** that revolutionizes how AI agents navigate and understand codebases. Built for high-concurrency environments with advanced database resilience, the server provides instant access to intelligent descriptions, semantic search, and context-aware recommendations while maintaining 800+ writes/sec throughput.
|
|
@@ -215,8 +219,8 @@ Vector Mode transforms how you search and understand codebases by using AI embed
|
|
|
215
219
|
### 🚀 Quick Start
|
|
216
220
|
|
|
217
221
|
```bash
|
|
218
|
-
# Install vector mode
|
|
219
|
-
pip install mcp-code-indexer
|
|
222
|
+
# Install MCP Code Indexer (includes vector mode)
|
|
223
|
+
pip install mcp-code-indexer
|
|
220
224
|
|
|
221
225
|
# Set required API keys
|
|
222
226
|
export VOYAGE_API_KEY="pa-your-voyage-api-key"
|
|
@@ -19,7 +19,7 @@ mcp_code_indexer/error_handler.py,sha256=ylciEM-cR7E8Gmd8cfh5olcllJm0FnaYBGH86ya
|
|
|
19
19
|
mcp_code_indexer/file_scanner.py,sha256=7Ab34lRQGeh5GBCzcSP96p4YK6LDWFGUHLXqi499UZ4,11838
|
|
20
20
|
mcp_code_indexer/git_hook_handler.py,sha256=sTtZV3-Yy1Evt06R5NZclELeepM4Ia9OQoR2O6BK3Hk,45517
|
|
21
21
|
mcp_code_indexer/logging_config.py,sha256=M5eVZ5PwfTROib7ISTQ522n2hUSc4hJ_wUgsrJKsTTg,10030
|
|
22
|
-
mcp_code_indexer/main.py,sha256=
|
|
22
|
+
mcp_code_indexer/main.py,sha256=tII1x_LHmD1T951-L1lTzXkR9Vz0z8_pNs-mznfj1CY,37133
|
|
23
23
|
mcp_code_indexer/middleware/__init__.py,sha256=UCEPzOlZldlqFzYEfrXw1HvCDvY1jpLvyaDGUzVr2aw,368
|
|
24
24
|
mcp_code_indexer/middleware/auth.py,sha256=4HkHMDZBNsyPA1VE8qF7pRNKbqG4xIDZjllENbgynxI,7258
|
|
25
25
|
mcp_code_indexer/middleware/error_middleware.py,sha256=0RnKM5fK_n_7AITK2ueAqv30kLBdjU3vaWOTwWd2Xs0,11965
|
|
@@ -58,8 +58,8 @@ mcp_code_indexer/vector_mode/providers/voyage_client.py,sha256=pfm9BOx5Temf0LM-V
|
|
|
58
58
|
mcp_code_indexer/vector_mode/security/__init__.py,sha256=itfeuysSqV-m9xuo-CMkAoucxexVfPgeOU-ieTLvdls,336
|
|
59
59
|
mcp_code_indexer/vector_mode/security/patterns.py,sha256=0xaiMnZm7YXswq3hVe_DJYePE9MhWuvizApLnmXus9M,11572
|
|
60
60
|
mcp_code_indexer/vector_mode/security/redactor.py,sha256=tsFzhCJ99bp4EFqQVjZ-4f8Uf3ux9X4ODVR09oJG01U,13380
|
|
61
|
-
mcp_code_indexer-4.2.
|
|
62
|
-
mcp_code_indexer-4.2.
|
|
63
|
-
mcp_code_indexer-4.2.
|
|
64
|
-
mcp_code_indexer-4.2.
|
|
65
|
-
mcp_code_indexer-4.2.
|
|
61
|
+
mcp_code_indexer-4.2.1.dist-info/LICENSE,sha256=JN9dyPPgYwH9C-UjYM7FLNZjQ6BF7kAzpF3_4PwY4rY,1086
|
|
62
|
+
mcp_code_indexer-4.2.1.dist-info/METADATA,sha256=jsPpjmDRZabOKWzLTt0MHzdE-jaNJCiosMx2SBQCtJU,27483
|
|
63
|
+
mcp_code_indexer-4.2.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
64
|
+
mcp_code_indexer-4.2.1.dist-info/entry_points.txt,sha256=UABj7HZ0mC6rvF22gxaz2LLNLGQShTrFmp5u00iUtvo,67
|
|
65
|
+
mcp_code_indexer-4.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|