mcp-vector-search 0.9.3__py3-none-any.whl → 0.12.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 +44 -22
- mcp_vector_search/cli/commands/install.py +502 -523
- mcp_vector_search/cli/commands/install_old.py +696 -0
- mcp_vector_search/cli/commands/status.py +7 -5
- mcp_vector_search/cli/commands/uninstall.py +485 -0
- mcp_vector_search/cli/commands/visualize.py +677 -53
- mcp_vector_search/cli/didyoumean.py +10 -0
- mcp_vector_search/cli/main.py +39 -21
- mcp_vector_search/core/connection_pool.py +49 -11
- mcp_vector_search/core/database.py +61 -28
- mcp_vector_search/core/directory_index.py +318 -0
- mcp_vector_search/core/indexer.py +146 -19
- mcp_vector_search/core/models.py +61 -0
- mcp_vector_search/core/project.py +16 -5
- mcp_vector_search/parsers/base.py +54 -18
- mcp_vector_search/parsers/javascript.py +41 -20
- mcp_vector_search/parsers/python.py +19 -11
- mcp_vector_search/parsers/registry.py +3 -2
- mcp_vector_search/utils/gitignore.py +17 -5
- mcp_vector_search/visualization/index.html +658 -0
- {mcp_vector_search-0.9.3.dist-info → mcp_vector_search-0.12.1.dist-info}/METADATA +87 -24
- {mcp_vector_search-0.9.3.dist-info → mcp_vector_search-0.12.1.dist-info}/RECORD +26 -22
- {mcp_vector_search-0.9.3.dist-info → mcp_vector_search-0.12.1.dist-info}/WHEEL +0 -0
- {mcp_vector_search-0.9.3.dist-info → mcp_vector_search-0.12.1.dist-info}/entry_points.txt +0 -0
- {mcp_vector_search-0.9.3.dist-info → mcp_vector_search-0.12.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-vector-search
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.12.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
|
|
@@ -39,6 +39,7 @@ Classifier: Topic :: Software Development :: Code Generators
|
|
|
39
39
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
40
40
|
Requires-Python: >=3.11
|
|
41
41
|
Requires-Dist: aiofiles>=23.0.0
|
|
42
|
+
Requires-Dist: authlib>=1.6.4
|
|
42
43
|
Requires-Dist: chromadb>=0.5.0
|
|
43
44
|
Requires-Dist: click-didyoumean>=0.3.0
|
|
44
45
|
Requires-Dist: httpx>=0.25.0
|
|
@@ -110,49 +111,68 @@ cd mcp-vector-search
|
|
|
110
111
|
uv sync && uv pip install -e .
|
|
111
112
|
```
|
|
112
113
|
|
|
113
|
-
### Complete Setup
|
|
114
|
+
### Complete Setup (One Command)
|
|
114
115
|
|
|
115
|
-
The
|
|
116
|
+
The **hierarchical install command** (v0.13.0) provides complete project setup and MCP integration management:
|
|
116
117
|
|
|
117
118
|
```bash
|
|
118
|
-
#
|
|
119
|
+
# Quick setup (recommended)
|
|
119
120
|
mcp-vector-search install
|
|
120
121
|
|
|
121
|
-
#
|
|
122
|
-
|
|
122
|
+
# This will:
|
|
123
|
+
# 1. Initialize your project configuration
|
|
124
|
+
# 2. Automatically index your codebase
|
|
125
|
+
# 3. Provide next-step hints for MCP integration
|
|
123
126
|
|
|
124
|
-
#
|
|
125
|
-
mcp-vector-search install --mcp
|
|
126
|
-
|
|
127
|
-
# Setup without automatic indexing
|
|
128
|
-
mcp-vector-search install --no-index
|
|
127
|
+
# Install with all MCP integrations at once
|
|
128
|
+
mcp-vector-search install --with-mcp
|
|
129
129
|
|
|
130
130
|
# Custom file extensions
|
|
131
131
|
mcp-vector-search install --extensions .py,.js,.ts,.dart
|
|
132
|
+
|
|
133
|
+
# Skip automatic indexing
|
|
134
|
+
mcp-vector-search install --no-auto-index
|
|
132
135
|
```
|
|
133
136
|
|
|
134
|
-
|
|
135
|
-
- Initializes your project configuration
|
|
136
|
-
- Detects and configures MCP tools (Claude Code, Cursor, Windsurf, VS Code)
|
|
137
|
-
- Automatically indexes your codebase
|
|
138
|
-
- Provides rich progress indicators and next-step hints
|
|
137
|
+
### Add MCP Integration for AI Tools
|
|
139
138
|
|
|
140
|
-
|
|
139
|
+
```bash
|
|
140
|
+
# Add Claude Code integration (project-scoped)
|
|
141
|
+
mcp-vector-search install claude-code
|
|
142
|
+
|
|
143
|
+
# Add Cursor IDE integration (global)
|
|
144
|
+
mcp-vector-search install cursor
|
|
145
|
+
|
|
146
|
+
# Add Claude Desktop integration (global)
|
|
147
|
+
mcp-vector-search install claude-desktop
|
|
148
|
+
|
|
149
|
+
# See all available platforms
|
|
150
|
+
mcp-vector-search install list
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
### Remove MCP Integrations
|
|
141
154
|
|
|
142
155
|
```bash
|
|
143
|
-
#
|
|
144
|
-
mcp-vector-search
|
|
156
|
+
# Remove specific platform
|
|
157
|
+
mcp-vector-search uninstall claude-code
|
|
145
158
|
|
|
146
|
-
#
|
|
147
|
-
mcp-vector-search
|
|
159
|
+
# Remove all integrations
|
|
160
|
+
mcp-vector-search uninstall --all
|
|
148
161
|
|
|
162
|
+
# List configured integrations
|
|
163
|
+
mcp-vector-search uninstall list
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
### Basic Usage
|
|
167
|
+
|
|
168
|
+
```bash
|
|
149
169
|
# Search your code
|
|
150
170
|
mcp-vector-search search "authentication logic"
|
|
151
171
|
mcp-vector-search search "database connection setup"
|
|
152
172
|
mcp-vector-search search "error handling patterns"
|
|
153
173
|
|
|
154
|
-
#
|
|
155
|
-
mcp-vector-search
|
|
174
|
+
# Index your codebase (if not done during install)
|
|
175
|
+
mcp-vector-search index
|
|
156
176
|
|
|
157
177
|
# Check project status
|
|
158
178
|
mcp-vector-search status
|
|
@@ -191,7 +211,50 @@ See [docs/VERSIONING_WORKFLOW.md](docs/VERSIONING_WORKFLOW.md) for complete docu
|
|
|
191
211
|
|
|
192
212
|
### Commands
|
|
193
213
|
|
|
194
|
-
#### `
|
|
214
|
+
#### `install` - Install Project and MCP Integrations (v0.13.0)
|
|
215
|
+
```bash
|
|
216
|
+
# Quick setup (recommended)
|
|
217
|
+
mcp-vector-search install
|
|
218
|
+
|
|
219
|
+
# Install with all MCP integrations
|
|
220
|
+
mcp-vector-search install --with-mcp
|
|
221
|
+
|
|
222
|
+
# Custom file extensions
|
|
223
|
+
mcp-vector-search install --extensions .py,.js,.ts
|
|
224
|
+
|
|
225
|
+
# Skip automatic indexing
|
|
226
|
+
mcp-vector-search install --no-auto-index
|
|
227
|
+
|
|
228
|
+
# Platform-specific MCP integration
|
|
229
|
+
mcp-vector-search install claude-code # Project-scoped
|
|
230
|
+
mcp-vector-search install claude-desktop # Global
|
|
231
|
+
mcp-vector-search install cursor # Global
|
|
232
|
+
mcp-vector-search install windsurf # Global
|
|
233
|
+
mcp-vector-search install vscode # Global
|
|
234
|
+
|
|
235
|
+
# List available platforms
|
|
236
|
+
mcp-vector-search install list
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
#### `uninstall` - Remove MCP Integrations (v0.13.0)
|
|
240
|
+
```bash
|
|
241
|
+
# Remove specific platform
|
|
242
|
+
mcp-vector-search uninstall claude-code
|
|
243
|
+
|
|
244
|
+
# Remove all integrations
|
|
245
|
+
mcp-vector-search uninstall --all
|
|
246
|
+
|
|
247
|
+
# List configured integrations
|
|
248
|
+
mcp-vector-search uninstall list
|
|
249
|
+
|
|
250
|
+
# Skip backup creation
|
|
251
|
+
mcp-vector-search uninstall claude-code --no-backup
|
|
252
|
+
|
|
253
|
+
# Alias (same as uninstall)
|
|
254
|
+
mcp-vector-search remove claude-code
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
#### `init` - Initialize Project (Simple)
|
|
195
258
|
```bash
|
|
196
259
|
# Basic initialization
|
|
197
260
|
mcp-vector-search init
|
|
@@ -1,25 +1,27 @@
|
|
|
1
|
-
mcp_vector_search/__init__.py,sha256=
|
|
1
|
+
mcp_vector_search/__init__.py,sha256=x50WkrKjIL9FUVrHMUHOyx99aKCd-VPkQ4dT60f0tlA,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
|
-
mcp_vector_search/cli/didyoumean.py,sha256=
|
|
4
|
+
mcp_vector_search/cli/didyoumean.py,sha256=8yF15w74xq9uUT46ww-XNidBs7cSPVYV7mKiMS4bRqY,16318
|
|
5
5
|
mcp_vector_search/cli/export.py,sha256=iluxuRT2KELdKlQeDAlVkteiel4GGrng153UAw9H0as,10804
|
|
6
6
|
mcp_vector_search/cli/history.py,sha256=6wRrSfxpUe9hJXuaEeVxOVkFlcpqkIiGfwzDgd5N6c8,9323
|
|
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=K04RHtxfZUPRYWJDnqs6LmsBU9WoBVXIiAOIwBg400U,15783
|
|
9
9
|
mcp_vector_search/cli/output.py,sha256=7ShIk_UKzhDzRGxI6JluPu0gGkbmKOevqgIAKR4oCa0,12560
|
|
10
10
|
mcp_vector_search/cli/suggestions.py,sha256=h-UaxoLcHmFbhZSm0WG7nKJXAIRIqhv7aGsXijp7vA8,13273
|
|
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=mKE8gUgAOqCM__4yzEEu9HJPbx9X15lN264zkDJBRxg,12399
|
|
14
14
|
mcp_vector_search/cli/commands/demo.py,sha256=MVfEkYmA2abRFwAbk-lpa6P14_SLJBHZAuHb9d6d02U,10630
|
|
15
|
-
mcp_vector_search/cli/commands/index.py,sha256=
|
|
15
|
+
mcp_vector_search/cli/commands/index.py,sha256=QZZ8Io4Rg4ueS9WquXA_jFAfqAaxNwXK_e7v5orOcnE,24117
|
|
16
16
|
mcp_vector_search/cli/commands/init.py,sha256=2kdjtIPPeutKUXs65-6W1VQPF_BQrbV6_U3TCE7U5mw,23242
|
|
17
|
-
mcp_vector_search/cli/commands/install.py,sha256=
|
|
17
|
+
mcp_vector_search/cli/commands/install.py,sha256=jZJp0mykQIpgF_vbUyqmO2GUlV2Dkjjukka-tcx30B4,22149
|
|
18
|
+
mcp_vector_search/cli/commands/install_old.py,sha256=phk7Eb7UOU5IsRfJyaDPdOfdUWli9gyA4cHjhgXcNEI,24609
|
|
18
19
|
mcp_vector_search/cli/commands/mcp.py,sha256=Mk4g43R9yRiJVMxsDFUsZldKqY0yi2coQmhAqIMPklo,38958
|
|
19
20
|
mcp_vector_search/cli/commands/reset.py,sha256=bsIT6zjDf6gsvIkVaRaUClYzlTyNe--8t0NWkBY0ldU,13724
|
|
20
21
|
mcp_vector_search/cli/commands/search.py,sha256=yyou7wO9qZ_w2oiKdyOrk2WUxvkFpc-Up8hpflxYlyw,24802
|
|
21
|
-
mcp_vector_search/cli/commands/status.py,sha256
|
|
22
|
-
mcp_vector_search/cli/commands/
|
|
22
|
+
mcp_vector_search/cli/commands/status.py,sha256=-Ke58000-bi74T0J-dy1zaD3C2TuZBSdERm9mIm3kXI,19814
|
|
23
|
+
mcp_vector_search/cli/commands/uninstall.py,sha256=XjFoSJlQkM1GPg7zaK65jOvb-hb87F2Ciyldbn8y2jc,14953
|
|
24
|
+
mcp_vector_search/cli/commands/visualize.py,sha256=1KlMP6upluYFWeu54Y7btHYBc73Qok-jKBdva0EoHm8,51677
|
|
23
25
|
mcp_vector_search/cli/commands/watch.py,sha256=2pyWRoo4fIppFnyQ4sW4IBLHmpb_IwnTjRnzHkVBPcQ,8927
|
|
24
26
|
mcp_vector_search/config/__init__.py,sha256=r_qAQkU5gc0EQ2pv8EQARACe4klhrR_WRJqCb9lfGc0,54
|
|
25
27
|
mcp_vector_search/config/constants.py,sha256=afXR6SvLLd8QYY4MG4s1vq-hCJiQsE5PhnE-XG9lvb4,1092
|
|
@@ -27,15 +29,16 @@ mcp_vector_search/config/defaults.py,sha256=CYeUOd5cTvyKDZpimgYEku28jeKo5w013dHi
|
|
|
27
29
|
mcp_vector_search/config/settings.py,sha256=m8o8j-tvWcuzrnNL6YWbi2fFbcB3lZY1kMNinJJUFCM,4328
|
|
28
30
|
mcp_vector_search/core/__init__.py,sha256=bWKtKmmaFs7gG5XPCbrx77UYIVeO1FF8wIJxpj1dLNw,48
|
|
29
31
|
mcp_vector_search/core/auto_indexer.py,sha256=0S4lZXaUgqEytMSA2FxQsh5hN7V1mbSLYVzEf_dslYQ,10307
|
|
30
|
-
mcp_vector_search/core/connection_pool.py,sha256=
|
|
31
|
-
mcp_vector_search/core/database.py,sha256=
|
|
32
|
+
mcp_vector_search/core/connection_pool.py,sha256=Ls6zenjS6lGNiQvaPtpVEB4g7J-Yt2b_bM89FiS_io4,12668
|
|
33
|
+
mcp_vector_search/core/database.py,sha256=5mA1CoJTFsfgfdcvCeijpYBzs_BvdWVmwEzdy_qpff8,46489
|
|
34
|
+
mcp_vector_search/core/directory_index.py,sha256=kCHyltX0b3ZgAm21BSBU_NI_DlyIJ9xq7TrnkFmCmb4,11207
|
|
32
35
|
mcp_vector_search/core/embeddings.py,sha256=wSMUNxZcuGPMxxQ1AbKqA1a3-0c6AiOqmuuI7OqTyaQ,10578
|
|
33
36
|
mcp_vector_search/core/exceptions.py,sha256=3bCjT8wmrLz_0e_Tayr90049zNTKYFWZa19kl0saKz8,1597
|
|
34
37
|
mcp_vector_search/core/factory.py,sha256=tM6Ft-V9buF7nn9xbRMU1ngji-BJOKt6BhtfQhFLmF4,10384
|
|
35
38
|
mcp_vector_search/core/git_hooks.py,sha256=xOfPpzgKoNTwM-vbhAihUucgudBQk45bCAVR5zJOFlQ,10878
|
|
36
|
-
mcp_vector_search/core/indexer.py,sha256=
|
|
37
|
-
mcp_vector_search/core/models.py,sha256=
|
|
38
|
-
mcp_vector_search/core/project.py,sha256=
|
|
39
|
+
mcp_vector_search/core/indexer.py,sha256=QtIpVI9b7KxpR4k9Fn5ocyhoTtw0a-VT9Mo6WUPHAYQ,35942
|
|
40
|
+
mcp_vector_search/core/models.py,sha256=p_Wheg4qNAC5cPwcuIQr9_GhR8MFDpIdEYeC_rRYuLw,11618
|
|
41
|
+
mcp_vector_search/core/project.py,sha256=X-Xs10_L0onNv23zrVcR94aZvN77nhYMNxjQ7mmRqKM,10838
|
|
39
42
|
mcp_vector_search/core/scheduler.py,sha256=PBSlu-ieDYCXOMGYY7QKv9UReFEDPHNmwnUv_xb4vxg,11761
|
|
40
43
|
mcp_vector_search/core/search.py,sha256=9OC8-KwWdbw4y4QPQ-VXfz0encVHTJWYLtah3_chqG8,33682
|
|
41
44
|
mcp_vector_search/core/watcher.py,sha256=-DFRCnuUfcqcTrkZPQqfJSvxKAxnpt-axgEj1V-B0O4,10862
|
|
@@ -43,23 +46,24 @@ mcp_vector_search/mcp/__init__.py,sha256=gfKR0QV7Jqvj5y0LMBe9gSghd5_rPsvm_rml0ry
|
|
|
43
46
|
mcp_vector_search/mcp/__main__.py,sha256=KgwB59HM5pRLe2Aj-fvDFcTp95lyT0wfmS3ENcx9gPc,571
|
|
44
47
|
mcp_vector_search/mcp/server.py,sha256=YmHyvJqg_CjxEN356ShFrTPLgDKzaLXyrt8tNHVryEY,28322
|
|
45
48
|
mcp_vector_search/parsers/__init__.py,sha256=jr0Yqz1xMok4lnG7_aXnkZThGuefrlAj8PWVbfeT3QQ,228
|
|
46
|
-
mcp_vector_search/parsers/base.py,sha256=
|
|
49
|
+
mcp_vector_search/parsers/base.py,sha256=dtezuhVgs9dAWlRYT23GGONyckWzTqkEj7Vcwor8C1k,9341
|
|
47
50
|
mcp_vector_search/parsers/dart.py,sha256=li2JP0vwpSsZnMNq0PweZCD_o-y1jUwubHlSA8nm8KQ,21816
|
|
48
51
|
mcp_vector_search/parsers/html.py,sha256=nzEVDV4oCBp3wpL8vp6WWx5eqiB39agu9E048JkuRJQ,13010
|
|
49
|
-
mcp_vector_search/parsers/javascript.py,sha256=
|
|
52
|
+
mcp_vector_search/parsers/javascript.py,sha256=uJMLTbY5NGDSf0817bZ6dQQuQMXLUfIEZzyPuxLxoBY,24337
|
|
50
53
|
mcp_vector_search/parsers/php.py,sha256=1QjnE8SAQF86VQ7pNfn1Pmpg5Dni4M7KCLU7212DkXM,24774
|
|
51
|
-
mcp_vector_search/parsers/python.py,sha256=
|
|
52
|
-
mcp_vector_search/parsers/registry.py,sha256=
|
|
54
|
+
mcp_vector_search/parsers/python.py,sha256=SiiFySPqZuSMgoctElZCMm18XEA3p1x1qdm1uvYlj_4,19322
|
|
55
|
+
mcp_vector_search/parsers/registry.py,sha256=_a5TwQ19xRb8bQUJhybL04PdmIEXhZ0-6687QvZvE_M,6556
|
|
53
56
|
mcp_vector_search/parsers/ruby.py,sha256=xNn_z8txAWL7E1ULcFMiqn5idFhf5GQn8N3x1yE-c2k,23818
|
|
54
57
|
mcp_vector_search/parsers/text.py,sha256=jvMdFspbmrrOR1GSGzf2gvBDCXz1cPN_xemoDK4fUvM,6084
|
|
55
58
|
mcp_vector_search/parsers/utils.py,sha256=10vT-GJSeDUoGSIslz8zq4RyavFiMtizCmcnn9cbQqE,8103
|
|
56
59
|
mcp_vector_search/utils/__init__.py,sha256=Eq6lY-oPMfCt-GpPUbg9QbmTHuQVmTaVDBMU2183KVw,887
|
|
57
|
-
mcp_vector_search/utils/gitignore.py,sha256=
|
|
60
|
+
mcp_vector_search/utils/gitignore.py,sha256=hJHt5YsfEvLIfweaa968tGTavcbxqh3X5nSaeWOS_FA,8690
|
|
58
61
|
mcp_vector_search/utils/monorepo.py,sha256=leTYx4ffN4IO0wDg7OWYfXMWMPp2Q_uEHl5WQFNk5Hs,8657
|
|
59
62
|
mcp_vector_search/utils/timing.py,sha256=THC7mfbTYnUpnnDcblgQacYMzbEkfFoIShx6plmhCgg,11285
|
|
60
63
|
mcp_vector_search/utils/version.py,sha256=d7fS-CLemxb8UzZ9j18zH0Y0Ud097ljKKYYOPulnGPE,1138
|
|
61
|
-
mcp_vector_search
|
|
62
|
-
mcp_vector_search-0.
|
|
63
|
-
mcp_vector_search-0.
|
|
64
|
-
mcp_vector_search-0.
|
|
65
|
-
mcp_vector_search-0.
|
|
64
|
+
mcp_vector_search/visualization/index.html,sha256=OHbMTjsyFXj0s8vKd9MjCgfIEflWfSlNNBTDUzOxgfM,22899
|
|
65
|
+
mcp_vector_search-0.12.1.dist-info/METADATA,sha256=cO-orPU1CPd1VxYtrbNPdMPxhTWmAWfF_f7wE6C3Qw0,20606
|
|
66
|
+
mcp_vector_search-0.12.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
67
|
+
mcp_vector_search-0.12.1.dist-info/entry_points.txt,sha256=y3Ygtc_JiBchNEIL-tPABo7EbzBExGAxwGdkkeP5D2I,86
|
|
68
|
+
mcp_vector_search-0.12.1.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
|
|
69
|
+
mcp_vector_search-0.12.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|