mcp-vector-search 0.4.13__py3-none-any.whl → 0.4.14__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/main.py +57 -9
- {mcp_vector_search-0.4.13.dist-info → mcp_vector_search-0.4.14.dist-info}/METADATA +1 -1
- {mcp_vector_search-0.4.13.dist-info → mcp_vector_search-0.4.14.dist-info}/RECORD +7 -7
- {mcp_vector_search-0.4.13.dist-info → mcp_vector_search-0.4.14.dist-info}/WHEEL +0 -0
- {mcp_vector_search-0.4.13.dist-info → mcp_vector_search-0.4.14.dist-info}/entry_points.txt +0 -0
- {mcp_vector_search-0.4.13.dist-info → mcp_vector_search-0.4.14.dist-info}/licenses/LICENSE +0 -0
mcp_vector_search/__init__.py
CHANGED
mcp_vector_search/cli/main.py
CHANGED
|
@@ -112,7 +112,15 @@ def interactive_search(
|
|
|
112
112
|
None, "--project-root", "-p", help="Project root directory"
|
|
113
113
|
),
|
|
114
114
|
) -> None:
|
|
115
|
-
"""Start an interactive search session with filtering and refinement.
|
|
115
|
+
"""Start an interactive search session with filtering and refinement.
|
|
116
|
+
|
|
117
|
+
The interactive mode provides a rich terminal interface for searching your codebase
|
|
118
|
+
with real-time filtering, query refinement, and result navigation.
|
|
119
|
+
|
|
120
|
+
Examples:
|
|
121
|
+
mcp-vector-search interactive
|
|
122
|
+
mcp-vector-search interactive --project-root /path/to/project
|
|
123
|
+
"""
|
|
116
124
|
import asyncio
|
|
117
125
|
|
|
118
126
|
from .interactive import start_interactive_search
|
|
@@ -137,7 +145,15 @@ def show_history(
|
|
|
137
145
|
None, "--project-root", "-p", help="Project root directory"
|
|
138
146
|
),
|
|
139
147
|
) -> None:
|
|
140
|
-
"""Show search history.
|
|
148
|
+
"""Show search history.
|
|
149
|
+
|
|
150
|
+
Displays your recent search queries with timestamps and result counts.
|
|
151
|
+
Use this to revisit previous searches or track your search patterns.
|
|
152
|
+
|
|
153
|
+
Examples:
|
|
154
|
+
mcp-vector-search history
|
|
155
|
+
mcp-vector-search history --limit 50
|
|
156
|
+
"""
|
|
141
157
|
from .history import show_search_history
|
|
142
158
|
|
|
143
159
|
root = project_root or ctx.obj.get("project_root") or Path.cwd()
|
|
@@ -151,7 +167,14 @@ def show_favorites_cmd(
|
|
|
151
167
|
None, "--project-root", "-p", help="Project root directory"
|
|
152
168
|
),
|
|
153
169
|
) -> None:
|
|
154
|
-
"""Show favorite queries.
|
|
170
|
+
"""Show favorite queries.
|
|
171
|
+
|
|
172
|
+
Displays your saved favorite search queries. Favorites allow you to quickly
|
|
173
|
+
access frequently used searches without typing them again.
|
|
174
|
+
|
|
175
|
+
Examples:
|
|
176
|
+
mcp-vector-search favorites
|
|
177
|
+
"""
|
|
155
178
|
from .history import show_favorites
|
|
156
179
|
|
|
157
180
|
root = project_root or ctx.obj.get("project_root") or Path.cwd()
|
|
@@ -167,7 +190,15 @@ def add_favorite(
|
|
|
167
190
|
None, "--project-root", "-p", help="Project root directory"
|
|
168
191
|
),
|
|
169
192
|
) -> None:
|
|
170
|
-
"""Add a query to favorites.
|
|
193
|
+
"""Add a query to favorites.
|
|
194
|
+
|
|
195
|
+
Save a search query to your favorites list for quick access later.
|
|
196
|
+
Optionally include a description to help remember what the query is for.
|
|
197
|
+
|
|
198
|
+
Examples:
|
|
199
|
+
mcp-vector-search add-favorite "authentication functions"
|
|
200
|
+
mcp-vector-search add-favorite "error handling" --desc "Error handling patterns"
|
|
201
|
+
"""
|
|
171
202
|
from .history import SearchHistory
|
|
172
203
|
|
|
173
204
|
root = project_root or ctx.obj.get("project_root") or Path.cwd()
|
|
@@ -183,7 +214,13 @@ def remove_favorite(
|
|
|
183
214
|
None, "--project-root", "-p", help="Project root directory"
|
|
184
215
|
),
|
|
185
216
|
) -> None:
|
|
186
|
-
"""Remove a query from favorites.
|
|
217
|
+
"""Remove a query from favorites.
|
|
218
|
+
|
|
219
|
+
Remove a previously saved favorite query from your favorites list.
|
|
220
|
+
|
|
221
|
+
Examples:
|
|
222
|
+
mcp-vector-search remove-favorite "authentication functions"
|
|
223
|
+
"""
|
|
187
224
|
from .history import SearchHistory
|
|
188
225
|
|
|
189
226
|
root = project_root or ctx.obj.get("project_root") or Path.cwd()
|
|
@@ -293,7 +330,14 @@ def help_contextual() -> None:
|
|
|
293
330
|
|
|
294
331
|
@app.command()
|
|
295
332
|
def doctor() -> None:
|
|
296
|
-
"""Check system dependencies and configuration.
|
|
333
|
+
"""Check system dependencies and configuration.
|
|
334
|
+
|
|
335
|
+
Runs diagnostic checks to ensure all required dependencies are installed
|
|
336
|
+
and properly configured. Use this command to troubleshoot installation issues.
|
|
337
|
+
|
|
338
|
+
Examples:
|
|
339
|
+
mcp-vector-search doctor
|
|
340
|
+
"""
|
|
297
341
|
from .commands.status import check_dependencies
|
|
298
342
|
|
|
299
343
|
console.print("[bold blue]MCP Vector Search - System Check[/bold blue]\n")
|
|
@@ -357,9 +401,13 @@ def cli_with_suggestions():
|
|
|
357
401
|
# Re-raise system exits
|
|
358
402
|
raise
|
|
359
403
|
except Exception as e:
|
|
360
|
-
# For other exceptions, show error and exit
|
|
361
|
-
|
|
362
|
-
sys.
|
|
404
|
+
# For other exceptions, show error and exit if verbose logging is enabled
|
|
405
|
+
# Suppress internal framework errors in normal operation
|
|
406
|
+
if "--verbose" in sys.argv or "-v" in sys.argv:
|
|
407
|
+
click.echo(f"Unexpected error: {e}", err=True)
|
|
408
|
+
sys.exit(1)
|
|
409
|
+
# Otherwise, just exit silently to avoid confusing error messages
|
|
410
|
+
pass
|
|
363
411
|
|
|
364
412
|
|
|
365
413
|
if __name__ == "__main__":
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-vector-search
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.14
|
|
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,11 +1,11 @@
|
|
|
1
|
-
mcp_vector_search/__init__.py,sha256=
|
|
1
|
+
mcp_vector_search/__init__.py,sha256=ir_M_lclJGDDVJ6Gf_IYKqrhZLJU1I7Tq1zE7pTA7dM,300
|
|
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=eq2uhP3E3qrPHmk2BrbFq8i8nT896uq24_IB8dzMHIk,16092
|
|
5
5
|
mcp_vector_search/cli/export.py,sha256=iluxuRT2KELdKlQeDAlVkteiel4GGrng153UAw9H0as,10804
|
|
6
6
|
mcp_vector_search/cli/history.py,sha256=osQVNiTIdGSRZQiJEjC_AYMmHxaqv7RSKSeuO325Ip0,9115
|
|
7
7
|
mcp_vector_search/cli/interactive.py,sha256=T7P4dAdvbglznzQYgiePv5YNyOx9FeE57Y3OKYnnbYE,12744
|
|
8
|
-
mcp_vector_search/cli/main.py,sha256=
|
|
8
|
+
mcp_vector_search/cli/main.py,sha256=I5WXHyB654YV0j2HODSv8Cy_zm_xfr91pFCSTb_0hLQ,15342
|
|
9
9
|
mcp_vector_search/cli/output.py,sha256=TGtWHrsfFg2tFf05aplZI2pDkoSnlKf_if78qXSRDtE,8077
|
|
10
10
|
mcp_vector_search/cli/suggestions.py,sha256=J7GB4r4PBqGY5QO20ZjfLLls1y1QYdvq0VxE-U3Cz70,12717
|
|
11
11
|
mcp_vector_search/cli/commands/__init__.py,sha256=vQls-YKZ54YEwmf7g1dL0T2SS9D4pdQljXzsUChG_V4,42
|
|
@@ -49,8 +49,8 @@ mcp_vector_search/utils/__init__.py,sha256=Eq6lY-oPMfCt-GpPUbg9QbmTHuQVmTaVDBMU2
|
|
|
49
49
|
mcp_vector_search/utils/gitignore.py,sha256=U1-1FERSYnDbxkH8JGG_azLxLasqkAh1urRUbZskmRU,8208
|
|
50
50
|
mcp_vector_search/utils/timing.py,sha256=THC7mfbTYnUpnnDcblgQacYMzbEkfFoIShx6plmhCgg,11285
|
|
51
51
|
mcp_vector_search/utils/version.py,sha256=d7fS-CLemxb8UzZ9j18zH0Y0Ud097ljKKYYOPulnGPE,1138
|
|
52
|
-
mcp_vector_search-0.4.
|
|
53
|
-
mcp_vector_search-0.4.
|
|
54
|
-
mcp_vector_search-0.4.
|
|
55
|
-
mcp_vector_search-0.4.
|
|
56
|
-
mcp_vector_search-0.4.
|
|
52
|
+
mcp_vector_search-0.4.14.dist-info/METADATA,sha256=EbalUrvvEgqQn5hGu1sD0WyDnL3EFQmZB2meZzmNRdA,15890
|
|
53
|
+
mcp_vector_search-0.4.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
54
|
+
mcp_vector_search-0.4.14.dist-info/entry_points.txt,sha256=y3Ygtc_JiBchNEIL-tPABo7EbzBExGAxwGdkkeP5D2I,86
|
|
55
|
+
mcp_vector_search-0.4.14.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
|
|
56
|
+
mcp_vector_search-0.4.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|