mcp-vector-search 0.0.3__py3-none-any.whl → 0.4.11__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 +3 -2
- mcp_vector_search/cli/commands/auto_index.py +397 -0
- mcp_vector_search/cli/commands/config.py +88 -40
- mcp_vector_search/cli/commands/index.py +198 -52
- mcp_vector_search/cli/commands/init.py +472 -58
- mcp_vector_search/cli/commands/install.py +284 -0
- mcp_vector_search/cli/commands/mcp.py +495 -0
- mcp_vector_search/cli/commands/search.py +241 -87
- mcp_vector_search/cli/commands/status.py +184 -58
- mcp_vector_search/cli/commands/watch.py +34 -35
- mcp_vector_search/cli/didyoumean.py +184 -0
- mcp_vector_search/cli/export.py +320 -0
- mcp_vector_search/cli/history.py +292 -0
- mcp_vector_search/cli/interactive.py +342 -0
- mcp_vector_search/cli/main.py +163 -26
- mcp_vector_search/cli/output.py +63 -45
- mcp_vector_search/config/defaults.py +50 -36
- mcp_vector_search/config/settings.py +49 -35
- mcp_vector_search/core/auto_indexer.py +298 -0
- mcp_vector_search/core/connection_pool.py +322 -0
- mcp_vector_search/core/database.py +335 -25
- mcp_vector_search/core/embeddings.py +73 -29
- mcp_vector_search/core/exceptions.py +19 -2
- mcp_vector_search/core/factory.py +310 -0
- mcp_vector_search/core/git_hooks.py +345 -0
- mcp_vector_search/core/indexer.py +237 -73
- mcp_vector_search/core/models.py +21 -19
- mcp_vector_search/core/project.py +73 -58
- mcp_vector_search/core/scheduler.py +330 -0
- mcp_vector_search/core/search.py +574 -86
- mcp_vector_search/core/watcher.py +48 -46
- mcp_vector_search/mcp/__init__.py +4 -0
- mcp_vector_search/mcp/__main__.py +25 -0
- mcp_vector_search/mcp/server.py +701 -0
- mcp_vector_search/parsers/base.py +30 -31
- mcp_vector_search/parsers/javascript.py +74 -48
- mcp_vector_search/parsers/python.py +57 -49
- mcp_vector_search/parsers/registry.py +47 -32
- mcp_vector_search/parsers/text.py +179 -0
- mcp_vector_search/utils/__init__.py +40 -0
- mcp_vector_search/utils/gitignore.py +229 -0
- mcp_vector_search/utils/timing.py +334 -0
- mcp_vector_search/utils/version.py +47 -0
- {mcp_vector_search-0.0.3.dist-info → mcp_vector_search-0.4.11.dist-info}/METADATA +173 -7
- mcp_vector_search-0.4.11.dist-info/RECORD +54 -0
- mcp_vector_search-0.0.3.dist-info/RECORD +0 -35
- {mcp_vector_search-0.0.3.dist-info → mcp_vector_search-0.4.11.dist-info}/WHEEL +0 -0
- {mcp_vector_search-0.0.3.dist-info → mcp_vector_search-0.4.11.dist-info}/entry_points.txt +0 -0
- {mcp_vector_search-0.0.3.dist-info → mcp_vector_search-0.4.11.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
mcp_vector_search/__init__.py,sha256=DkCCUQptV_fCic0NkgSY40nsETsW8BH9qBOaV0euOLk,300
|
|
2
|
+
mcp_vector_search/py.typed,sha256=lCKeV9Qcn9sGtbRsgg-LJO2ZwWRuknnnlmomq3bJFH0,43
|
|
3
|
+
mcp_vector_search/cli/__init__.py,sha256=TNB7CaOASz8u3yHWLbNmo8-GtHF0qwUjVKWAuNphKgo,40
|
|
4
|
+
mcp_vector_search/cli/didyoumean.py,sha256=F4b9jTJfeAkg5XLDx93sgiNS-o7NTmnDVEwDrNcg64w,6438
|
|
5
|
+
mcp_vector_search/cli/export.py,sha256=iluxuRT2KELdKlQeDAlVkteiel4GGrng153UAw9H0as,10804
|
|
6
|
+
mcp_vector_search/cli/history.py,sha256=osQVNiTIdGSRZQiJEjC_AYMmHxaqv7RSKSeuO325Ip0,9115
|
|
7
|
+
mcp_vector_search/cli/interactive.py,sha256=T7P4dAdvbglznzQYgiePv5YNyOx9FeE57Y3OKYnnbYE,12744
|
|
8
|
+
mcp_vector_search/cli/main.py,sha256=-r-kf7C1XENCQANM4UX4DUhUmslNvTh1W3jD6_M9Vbo,8569
|
|
9
|
+
mcp_vector_search/cli/output.py,sha256=TGtWHrsfFg2tFf05aplZI2pDkoSnlKf_if78qXSRDtE,8077
|
|
10
|
+
mcp_vector_search/cli/commands/__init__.py,sha256=vQls-YKZ54YEwmf7g1dL0T2SS9D4pdQljXzsUChG_V4,42
|
|
11
|
+
mcp_vector_search/cli/commands/auto_index.py,sha256=imVVbxWRlA128NPdK9BetNNl3ELrsdq-hqcsLqyAmoM,12712
|
|
12
|
+
mcp_vector_search/cli/commands/config.py,sha256=EHLqToCXrZs3gjIAg7pV8Bq8yVslUXWC4AnTcZQgSPQ,11337
|
|
13
|
+
mcp_vector_search/cli/commands/index.py,sha256=LsFCfqfXWd5s11wE_21mpsTitmsKsdGUhbmPNgAmIzc,14015
|
|
14
|
+
mcp_vector_search/cli/commands/init.py,sha256=1Q5ANcjE7bty2QG0hvKx_ZSypyiwkKDhgkkJPEFKPtI,24861
|
|
15
|
+
mcp_vector_search/cli/commands/install.py,sha256=sE5mjv2pCDp2tvMj4UqfKLHpSt8Yedcb_CirWLoedDw,10375
|
|
16
|
+
mcp_vector_search/cli/commands/mcp.py,sha256=gpt9hfSmfpcr4rdis2DsenhNnGW5a0B8Xmb3RVEEtuY,17822
|
|
17
|
+
mcp_vector_search/cli/commands/search.py,sha256=UmMtRs15ZO5Bzc_DKWgBRoGwZgm9XXn6Lppsl1o-1I0,16785
|
|
18
|
+
mcp_vector_search/cli/commands/status.py,sha256=CqD3W4wI70o6c2XJiq0c7W0maQshWrsYQkeMyI6S13U,16600
|
|
19
|
+
mcp_vector_search/cli/commands/watch.py,sha256=2pyWRoo4fIppFnyQ4sW4IBLHmpb_IwnTjRnzHkVBPcQ,8927
|
|
20
|
+
mcp_vector_search/config/__init__.py,sha256=r_qAQkU5gc0EQ2pv8EQARACe4klhrR_WRJqCb9lfGc0,54
|
|
21
|
+
mcp_vector_search/config/defaults.py,sha256=62wM6NGwjLQW8mu0Wp9eIykii2-3dbxuqzszB7spkVw,4945
|
|
22
|
+
mcp_vector_search/config/settings.py,sha256=v1bc2K2yTwDzQKiy_BQhTWCP7FinSWX99vQGTWJRD2I,4159
|
|
23
|
+
mcp_vector_search/core/__init__.py,sha256=bWKtKmmaFs7gG5XPCbrx77UYIVeO1FF8wIJxpj1dLNw,48
|
|
24
|
+
mcp_vector_search/core/auto_indexer.py,sha256=0S4lZXaUgqEytMSA2FxQsh5hN7V1mbSLYVzEf_dslYQ,10307
|
|
25
|
+
mcp_vector_search/core/connection_pool.py,sha256=Yo-gUQQbHawtuvh6OcJiAlbbvWQGQBd31QZOvs498fg,11224
|
|
26
|
+
mcp_vector_search/core/database.py,sha256=afYg_AcLY6gcNV6yJ79UUa9zk5OULHcS-s8t3O5LY_Q,26691
|
|
27
|
+
mcp_vector_search/core/embeddings.py,sha256=wSMUNxZcuGPMxxQ1AbKqA1a3-0c6AiOqmuuI7OqTyaQ,10578
|
|
28
|
+
mcp_vector_search/core/exceptions.py,sha256=9cW1E2MdWnx9o9gaFBk5XaOwIbWeKGheM_jG7cCZJ3k,1505
|
|
29
|
+
mcp_vector_search/core/factory.py,sha256=GnsCBcRndBaUBWSXwtt8QKInAo-rGGBTSOKznUFETwA,10016
|
|
30
|
+
mcp_vector_search/core/git_hooks.py,sha256=xOfPpzgKoNTwM-vbhAihUucgudBQk45bCAVR5zJOFlQ,10878
|
|
31
|
+
mcp_vector_search/core/indexer.py,sha256=NroJxIoAQg1Egv_hZK76co13pbJrBxZ-IN6ZWDFu9W0,15645
|
|
32
|
+
mcp_vector_search/core/models.py,sha256=fnZxvUkd9Afxmdwtw2BJX7uik6rQTwuWBTTqTeqDi0A,6697
|
|
33
|
+
mcp_vector_search/core/project.py,sha256=RNeLBZZw6SO5mXqCwYfhStTGuVgeMq1US5UftG0SBYk,10069
|
|
34
|
+
mcp_vector_search/core/scheduler.py,sha256=PBSlu-ieDYCXOMGYY7QKv9UReFEDPHNmwnUv_xb4vxg,11761
|
|
35
|
+
mcp_vector_search/core/search.py,sha256=qViLXKQuxJEHejtuQDiZOF-sd0IY59xsztxI6hRjDzg,28350
|
|
36
|
+
mcp_vector_search/core/watcher.py,sha256=-DFRCnuUfcqcTrkZPQqfJSvxKAxnpt-axgEj1V-B0O4,10862
|
|
37
|
+
mcp_vector_search/mcp/__init__.py,sha256=gfKR0QV7Jqvj5y0LMBe9gSghd5_rPsvm_rml0ryQtoY,158
|
|
38
|
+
mcp_vector_search/mcp/__main__.py,sha256=vhAUa4S8hoXqfJt4w0yX5z2h5GoPAar8iFqgIW-WdbY,575
|
|
39
|
+
mcp_vector_search/mcp/server.py,sha256=6v7tnR5k5LZKEvtf9o98WozgpP7k9hGtnmtZlkbyrCs,26995
|
|
40
|
+
mcp_vector_search/parsers/__init__.py,sha256=nk4clWDWQURMxzC1ev8O_vGlfraHlXqizTDXgFqIP5U,46
|
|
41
|
+
mcp_vector_search/parsers/base.py,sha256=-zBY9T0modfegowaNyf5_upkS3ImR4TgrRwoSLuAiDw,5421
|
|
42
|
+
mcp_vector_search/parsers/javascript.py,sha256=P7fT_tXCzUuXATTkTx_DyD4EuG0_KjIDlay09MhkKTE,9824
|
|
43
|
+
mcp_vector_search/parsers/python.py,sha256=IB4gQ6DD6Oqvws5p3LQtHTJOtmH6f9FWmO9fQRfGQx4,15688
|
|
44
|
+
mcp_vector_search/parsers/registry.py,sha256=SaUe1DpS_vqM16TF5pUfupprZPfteTb5gyWvQvgxwfY,5872
|
|
45
|
+
mcp_vector_search/parsers/text.py,sha256=EasxFCrHj3zA5-L0jrtrrgVLr5VLhs6BQpNPDgXm3iM,5958
|
|
46
|
+
mcp_vector_search/utils/__init__.py,sha256=Eq6lY-oPMfCt-GpPUbg9QbmTHuQVmTaVDBMU2183KVw,887
|
|
47
|
+
mcp_vector_search/utils/gitignore.py,sha256=U1-1FERSYnDbxkH8JGG_azLxLasqkAh1urRUbZskmRU,8208
|
|
48
|
+
mcp_vector_search/utils/timing.py,sha256=THC7mfbTYnUpnnDcblgQacYMzbEkfFoIShx6plmhCgg,11285
|
|
49
|
+
mcp_vector_search/utils/version.py,sha256=d7fS-CLemxb8UzZ9j18zH0Y0Ud097ljKKYYOPulnGPE,1138
|
|
50
|
+
mcp_vector_search-0.4.11.dist-info/METADATA,sha256=S5y5Rgo8GPxUGCCffMsek-sOI0yxYL0EPKmt0E23wgg,15890
|
|
51
|
+
mcp_vector_search-0.4.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
52
|
+
mcp_vector_search-0.4.11.dist-info/entry_points.txt,sha256=dw8_HpBvwhauz6bkMbs3QM6dbstV1mPGo9DcNpVM-bE,69
|
|
53
|
+
mcp_vector_search-0.4.11.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
|
|
54
|
+
mcp_vector_search-0.4.11.dist-info/RECORD,,
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
mcp_vector_search/__init__.py,sha256=r0vZZ1e8T3dOOqEg929ycGTCy1a7fco_ujtncgEkUo8,269
|
|
2
|
-
mcp_vector_search/py.typed,sha256=lCKeV9Qcn9sGtbRsgg-LJO2ZwWRuknnnlmomq3bJFH0,43
|
|
3
|
-
mcp_vector_search/cli/__init__.py,sha256=TNB7CaOASz8u3yHWLbNmo8-GtHF0qwUjVKWAuNphKgo,40
|
|
4
|
-
mcp_vector_search/cli/main.py,sha256=WMFDUeCFMvJjC3PbJppWAmZDDeVn7lq5gMkb5sD8AqI,3750
|
|
5
|
-
mcp_vector_search/cli/output.py,sha256=gCzWECzabKWYCgnPTJfRS81lWJ7_GONECw2w2ldphPQ,7820
|
|
6
|
-
mcp_vector_search/cli/commands/__init__.py,sha256=vQls-YKZ54YEwmf7g1dL0T2SS9D4pdQljXzsUChG_V4,42
|
|
7
|
-
mcp_vector_search/cli/commands/config.py,sha256=xNB5U0X1aZ2ZO5HOh4ANX4mHZmw66xD-LRyChvkXpn8,10374
|
|
8
|
-
mcp_vector_search/cli/commands/index.py,sha256=zPl_8vNvaanVPoVf5sGXEVbLAv6lgFfo6-lcr0w1GQ8,9099
|
|
9
|
-
mcp_vector_search/cli/commands/init.py,sha256=m2EeA5WDUS5IJRzlgEcnSGYfhCdvGvaiHxDs_c_CIKs,7574
|
|
10
|
-
mcp_vector_search/cli/commands/search.py,sha256=jttTaCVicMvnF4cwjLwsPt7bSxhXtU8oj12IGVYCz0g,11608
|
|
11
|
-
mcp_vector_search/cli/commands/status.py,sha256=6QflT4U8SYl37VAqX0DmL_Qjr0YzTwuE-HN6rWSuWhY,12309
|
|
12
|
-
mcp_vector_search/cli/commands/watch.py,sha256=WkwfUBaf68mPv7lvLdERCa5011pp-kPHuQt3Q4WcbpI,9229
|
|
13
|
-
mcp_vector_search/config/__init__.py,sha256=r_qAQkU5gc0EQ2pv8EQARACe4klhrR_WRJqCb9lfGc0,54
|
|
14
|
-
mcp_vector_search/config/defaults.py,sha256=GC84f690Wp03uqQFPJrHhrxYrE1l4MK7GSH1AiQCUaQ,4379
|
|
15
|
-
mcp_vector_search/config/settings.py,sha256=fWe34fgEoKUfcHjDiEGB25fmdbSM2gCTSymf98imsNU,3688
|
|
16
|
-
mcp_vector_search/core/__init__.py,sha256=bWKtKmmaFs7gG5XPCbrx77UYIVeO1FF8wIJxpj1dLNw,48
|
|
17
|
-
mcp_vector_search/core/database.py,sha256=A4iyqpzzm5i_nU78LcvkgoFWaszjr8t6ST66GdMvPa4,14293
|
|
18
|
-
mcp_vector_search/core/embeddings.py,sha256=w-0z8JNVfOh1PaiTg1OBR1H2YLCKsB6uHFeOLAHHvBA,8847
|
|
19
|
-
mcp_vector_search/core/exceptions.py,sha256=01f0hE_bbIvyJV-3sYr_IMOPVsyDiFD1tsvoFwjTAsY,1415
|
|
20
|
-
mcp_vector_search/core/indexer.py,sha256=obpHGASAm1S-mG-0bdLmzYeNiLebLsCTu5rCYe4uevo,9987
|
|
21
|
-
mcp_vector_search/core/models.py,sha256=UcjE4E9ummpRCWS2I1aMj7TmqX1L2t8cFMSLUMbQtaE,6724
|
|
22
|
-
mcp_vector_search/core/project.py,sha256=p_1bm783-btK1JiJXYEwx7wULHfTYYPVV2_gY-jdr80,10029
|
|
23
|
-
mcp_vector_search/core/search.py,sha256=VBbA3A2sRvuRoui_mxXv4Ah-iSvIKeToN5UQr7_nPkY,10709
|
|
24
|
-
mcp_vector_search/core/watcher.py,sha256=VeaZTCr9nUrxMDqqDi1dpZbiedDTxhZyV4C65yCjVaE,11045
|
|
25
|
-
mcp_vector_search/mcp/__init__.py,sha256=QOpaCGNg4UWeDDH5OIrxzQJIZgYm_15m76RcBTScO60,52
|
|
26
|
-
mcp_vector_search/parsers/__init__.py,sha256=nk4clWDWQURMxzC1ev8O_vGlfraHlXqizTDXgFqIP5U,46
|
|
27
|
-
mcp_vector_search/parsers/base.py,sha256=MpgstIwsN2amjT0kwBMxopSsvrkJXYs1EgK9VdFoqWk,5645
|
|
28
|
-
mcp_vector_search/parsers/javascript.py,sha256=NTgHTEt8KZdxKKjFORB9Wjd3S4FobR9n_lAs4ONp0XM,9754
|
|
29
|
-
mcp_vector_search/parsers/python.py,sha256=EJYJjjQrOvG-_tBHJOt9zeCswjK3oO3dpfPurauHdj0,15741
|
|
30
|
-
mcp_vector_search/parsers/registry.py,sha256=7iLcj1sihfUhyFh6TZ-Hw3bMqs1rQW3zwMfslaDFneM,5539
|
|
31
|
-
mcp_vector_search-0.0.3.dist-info/METADATA,sha256=NoPD67cGMUKohy9lDrQ3QLVOZLPKFyedy9lHYtnOhKQ,10757
|
|
32
|
-
mcp_vector_search-0.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
33
|
-
mcp_vector_search-0.0.3.dist-info/entry_points.txt,sha256=dw8_HpBvwhauz6bkMbs3QM6dbstV1mPGo9DcNpVM-bE,69
|
|
34
|
-
mcp_vector_search-0.0.3.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
|
|
35
|
-
mcp_vector_search-0.0.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|