mcp-code-indexer 1.0.5__py3-none-any.whl → 1.0.6__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/server/mcp_server.py +4 -2
- {mcp_code_indexer-1.0.5.dist-info → mcp_code_indexer-1.0.6.dist-info}/METADATA +1 -1
- {mcp_code_indexer-1.0.5.dist-info → mcp_code_indexer-1.0.6.dist-info}/RECORD +7 -7
- {mcp_code_indexer-1.0.5.dist-info → mcp_code_indexer-1.0.6.dist-info}/WHEEL +0 -0
- {mcp_code_indexer-1.0.5.dist-info → mcp_code_indexer-1.0.6.dist-info}/entry_points.txt +0 -0
- {mcp_code_indexer-1.0.5.dist-info → mcp_code_indexer-1.0.6.dist-info}/licenses/LICENSE +0 -0
- {mcp_code_indexer-1.0.5.dist-info → mcp_code_indexer-1.0.6.dist-info}/top_level.txt +0 -0
@@ -310,8 +310,10 @@ class MCPCodeIndexServer:
|
|
310
310
|
folder_path = arguments["folderPath"]
|
311
311
|
branch = arguments.get("branch", "main")
|
312
312
|
|
313
|
-
# Create project ID from identifiers
|
314
|
-
|
313
|
+
# Create project ID from identifiers (normalize None values for consistent hashing)
|
314
|
+
remote_key = remote_origin or ""
|
315
|
+
upstream_key = upstream_origin or ""
|
316
|
+
id_source = f"{project_name}:{remote_key}:{upstream_key}:{folder_path}"
|
315
317
|
project_id = hashlib.sha256(id_source.encode()).hexdigest()[:16]
|
316
318
|
|
317
319
|
# Check if project exists, create if not
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-code-indexer
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.6
|
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
|
Author: MCP Code Indexer Contributors
|
6
6
|
Maintainer: MCP Code Indexer Contributors
|
@@ -11,12 +11,12 @@ mcp_code_indexer/database/models.py,sha256=3wOxHKb6j3zKPWFSwB5g1TLpI507vLNZcqsxZ
|
|
11
11
|
mcp_code_indexer/middleware/__init__.py,sha256=p-mP0pMsfiU2yajCPvokCUxUEkh_lu4XJP1LyyMW2ug,220
|
12
12
|
mcp_code_indexer/middleware/error_middleware.py,sha256=v6jaHmPxf3qerYdb85X1tHIXLxgcbybpitKVakFLQTA,10109
|
13
13
|
mcp_code_indexer/server/__init__.py,sha256=16xMcuriUOBlawRqWNBk6niwrvtv_JD5xvI36X1Vsmk,41
|
14
|
-
mcp_code_indexer/server/mcp_server.py,sha256=
|
14
|
+
mcp_code_indexer/server/mcp_server.py,sha256=PGy6X6U6NTbbOHz11bgf3a7RJ8-pb0KbRY6LyokmJyM,40027
|
15
15
|
mcp_code_indexer/tiktoken_cache/9b5ad71b2ce5302211f9c61530b329a4922fc6a4,sha256=Ijkht27pm96ZW3_3OFE-7xAPtR0YyTWXoRO8_-hlsqc,1681126
|
16
16
|
mcp_code_indexer/tools/__init__.py,sha256=m01mxML2UdD7y5rih_XNhNSCMzQTz7WQ_T1TeOcYlnE,49
|
17
|
-
mcp_code_indexer-1.0.
|
18
|
-
mcp_code_indexer-1.0.
|
19
|
-
mcp_code_indexer-1.0.
|
20
|
-
mcp_code_indexer-1.0.
|
21
|
-
mcp_code_indexer-1.0.
|
22
|
-
mcp_code_indexer-1.0.
|
17
|
+
mcp_code_indexer-1.0.6.dist-info/licenses/LICENSE,sha256=JN9dyPPgYwH9C-UjYM7FLNZjQ6BF7kAzpF3_4PwY4rY,1086
|
18
|
+
mcp_code_indexer-1.0.6.dist-info/METADATA,sha256=WWfwybckUQpCurpButvXGA6cRmaK-gZPOgUeJS6KuJI,11930
|
19
|
+
mcp_code_indexer-1.0.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
20
|
+
mcp_code_indexer-1.0.6.dist-info/entry_points.txt,sha256=8HqWOw1Is7jOP1bvIgaSwouvT9z_Boe-9hd4NzyJOhY,68
|
21
|
+
mcp_code_indexer-1.0.6.dist-info/top_level.txt,sha256=yKYCM-gMGt-cnupGfAhnZaoEsROLB6DQ1KFUuyKx4rw,17
|
22
|
+
mcp_code_indexer-1.0.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|