mcp-vector-search 0.6.0__py3-none-any.whl → 0.6.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.
Potentially problematic release.
This version of mcp-vector-search might be problematic. Click here for more details.
- mcp_vector_search/__init__.py +2 -2
- mcp_vector_search/cli/commands/index.py +11 -4
- {mcp_vector_search-0.6.0.dist-info → mcp_vector_search-0.6.1.dist-info}/METADATA +1 -1
- {mcp_vector_search-0.6.0.dist-info → mcp_vector_search-0.6.1.dist-info}/RECORD +7 -7
- {mcp_vector_search-0.6.0.dist-info → mcp_vector_search-0.6.1.dist-info}/WHEEL +0 -0
- {mcp_vector_search-0.6.0.dist-info → mcp_vector_search-0.6.1.dist-info}/entry_points.txt +0 -0
- {mcp_vector_search-0.6.0.dist-info → mcp_vector_search-0.6.1.dist-info}/licenses/LICENSE +0 -0
mcp_vector_search/__init__.py
CHANGED
|
@@ -22,11 +22,14 @@ from ..output import (
|
|
|
22
22
|
print_tip,
|
|
23
23
|
)
|
|
24
24
|
|
|
25
|
-
# Create index subcommand app
|
|
26
|
-
index_app = typer.Typer(
|
|
25
|
+
# Create index subcommand app with callback for direct usage
|
|
26
|
+
index_app = typer.Typer(
|
|
27
|
+
help="Index codebase for semantic search",
|
|
28
|
+
invoke_without_command=True,
|
|
29
|
+
)
|
|
27
30
|
|
|
28
31
|
|
|
29
|
-
@index_app.
|
|
32
|
+
@index_app.callback(invoke_without_command=True)
|
|
30
33
|
def main(
|
|
31
34
|
ctx: typer.Context,
|
|
32
35
|
watch: bool = typer.Option(
|
|
@@ -95,8 +98,12 @@ def main(
|
|
|
95
98
|
|
|
96
99
|
[dim]💡 Tip: Use incremental indexing (default) for faster updates on subsequent runs.[/dim]
|
|
97
100
|
"""
|
|
101
|
+
# If a subcommand was invoked, don't run the indexing logic
|
|
102
|
+
if ctx.invoked_subcommand is not None:
|
|
103
|
+
return
|
|
104
|
+
|
|
98
105
|
try:
|
|
99
|
-
project_root = ctx.obj.get("project_root") or Path.cwd()
|
|
106
|
+
project_root = (ctx.obj.get("project_root") if ctx.obj else None) or Path.cwd()
|
|
100
107
|
|
|
101
108
|
# Run async indexing
|
|
102
109
|
asyncio.run(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-vector-search
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.1
|
|
4
4
|
Summary: CLI-first semantic code search with MCP integration
|
|
5
5
|
Project-URL: Homepage, https://github.com/bobmatnyc/mcp-vector-search
|
|
6
6
|
Project-URL: Documentation, https://mcp-vector-search.readthedocs.io
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
mcp_vector_search/__init__.py,sha256=
|
|
1
|
+
mcp_vector_search/__init__.py,sha256=7RjW6QzohQ-IjqQ-eJnvKjAlZ7tIsfxbJILz4NVfxFA,299
|
|
2
2
|
mcp_vector_search/py.typed,sha256=lCKeV9Qcn9sGtbRsgg-LJO2ZwWRuknnnlmomq3bJFH0,43
|
|
3
3
|
mcp_vector_search/cli/__init__.py,sha256=TNB7CaOASz8u3yHWLbNmo8-GtHF0qwUjVKWAuNphKgo,40
|
|
4
4
|
mcp_vector_search/cli/didyoumean.py,sha256=F_ss-EX4F9RgnMsEhdTwLpyNCah9SqnBZc2tBtzASck,15918
|
|
@@ -11,7 +11,7 @@ mcp_vector_search/cli/suggestions.py,sha256=h-UaxoLcHmFbhZSm0WG7nKJXAIRIqhv7aGsX
|
|
|
11
11
|
mcp_vector_search/cli/commands/__init__.py,sha256=vQls-YKZ54YEwmf7g1dL0T2SS9D4pdQljXzsUChG_V4,42
|
|
12
12
|
mcp_vector_search/cli/commands/auto_index.py,sha256=imVVbxWRlA128NPdK9BetNNl3ELrsdq-hqcsLqyAmoM,12712
|
|
13
13
|
mcp_vector_search/cli/commands/config.py,sha256=EHLqToCXrZs3gjIAg7pV8Bq8yVslUXWC4AnTcZQgSPQ,11337
|
|
14
|
-
mcp_vector_search/cli/commands/index.py,sha256=
|
|
14
|
+
mcp_vector_search/cli/commands/index.py,sha256=haEj8MfCzHvv4wGaPryd01aJKFt_AGGT-zwyvSnp9fQ,15639
|
|
15
15
|
mcp_vector_search/cli/commands/init.py,sha256=1kK2YmWnMCnAmWjI3Om3d_NE89APisL-vvUFfKcyp2I,26408
|
|
16
16
|
mcp_vector_search/cli/commands/install.py,sha256=phk7Eb7UOU5IsRfJyaDPdOfdUWli9gyA4cHjhgXcNEI,24609
|
|
17
17
|
mcp_vector_search/cli/commands/mcp.py,sha256=FKZNxYrDc7HfPTFBUEypCv-8atsrHEdbtU6Yfg9QUMA,18569
|
|
@@ -55,8 +55,8 @@ mcp_vector_search/utils/__init__.py,sha256=Eq6lY-oPMfCt-GpPUbg9QbmTHuQVmTaVDBMU2
|
|
|
55
55
|
mcp_vector_search/utils/gitignore.py,sha256=bzie3V5gOGIN7j3FNVLLCx8O_hfZJDUqqAy5T3lT3Ek,7685
|
|
56
56
|
mcp_vector_search/utils/timing.py,sha256=THC7mfbTYnUpnnDcblgQacYMzbEkfFoIShx6plmhCgg,11285
|
|
57
57
|
mcp_vector_search/utils/version.py,sha256=d7fS-CLemxb8UzZ9j18zH0Y0Ud097ljKKYYOPulnGPE,1138
|
|
58
|
-
mcp_vector_search-0.6.
|
|
59
|
-
mcp_vector_search-0.6.
|
|
60
|
-
mcp_vector_search-0.6.
|
|
61
|
-
mcp_vector_search-0.6.
|
|
62
|
-
mcp_vector_search-0.6.
|
|
58
|
+
mcp_vector_search-0.6.1.dist-info/METADATA,sha256=C_UHz8WxHNfvbm2YMNmvhvC8PFFaF4nBCueGUq1pKQA,19120
|
|
59
|
+
mcp_vector_search-0.6.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
60
|
+
mcp_vector_search-0.6.1.dist-info/entry_points.txt,sha256=y3Ygtc_JiBchNEIL-tPABo7EbzBExGAxwGdkkeP5D2I,86
|
|
61
|
+
mcp_vector_search-0.6.1.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
|
|
62
|
+
mcp_vector_search-0.6.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|