mcp-vector-search 0.12.0__py3-none-any.whl → 0.12.2__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 +15 -24
- 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 +417 -121
- 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 +7 -9
- mcp_vector_search/core/directory_index.py +26 -11
- mcp_vector_search/core/indexer.py +89 -29
- mcp_vector_search/core/models.py +4 -1
- 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 +3 -1
- mcp_vector_search/visualization/favicon-v1-1024.png +0 -0
- mcp_vector_search/visualization/favicon-v1-128.png +0 -0
- mcp_vector_search/visualization/favicon-v1-16.png +0 -0
- mcp_vector_search/visualization/favicon-v1-256.png +0 -0
- mcp_vector_search/visualization/favicon-v1-32.png +0 -0
- mcp_vector_search/visualization/favicon-v1-512.png +0 -0
- mcp_vector_search/visualization/favicon-v1-64.png +0 -0
- mcp_vector_search/visualization/favicon-v1.ico +0 -0
- mcp_vector_search/visualization/favicon-v2-1024.png +0 -0
- mcp_vector_search/visualization/favicon-v2-128.png +0 -0
- mcp_vector_search/visualization/favicon-v2-16.png +0 -0
- mcp_vector_search/visualization/favicon-v2-256.png +0 -0
- mcp_vector_search/visualization/favicon-v2-32.png +0 -0
- mcp_vector_search/visualization/favicon-v2-512.png +0 -0
- mcp_vector_search/visualization/favicon-v2-64.png +0 -0
- mcp_vector_search/visualization/favicon-v2.ico +0 -0
- mcp_vector_search/visualization/favicon-v3-1024.png +0 -0
- mcp_vector_search/visualization/favicon-v3-128.png +0 -0
- mcp_vector_search/visualization/favicon-v3-16.png +0 -0
- mcp_vector_search/visualization/favicon-v3-256.png +0 -0
- mcp_vector_search/visualization/favicon-v3-32.png +0 -0
- mcp_vector_search/visualization/favicon-v3-512.png +0 -0
- mcp_vector_search/visualization/favicon-v3-64.png +0 -0
- mcp_vector_search/visualization/favicon-v3.ico +0 -0
- mcp_vector_search/visualization/index.html +522 -172
- {mcp_vector_search-0.12.0.dist-info → mcp_vector_search-0.12.2.dist-info}/METADATA +148 -25
- mcp_vector_search-0.12.2.dist-info/RECORD +93 -0
- mcp_vector_search-0.12.0.dist-info/RECORD +0 -67
- {mcp_vector_search-0.12.0.dist-info → mcp_vector_search-0.12.2.dist-info}/WHEEL +0 -0
- {mcp_vector_search-0.12.0.dist-info → mcp_vector_search-0.12.2.dist-info}/entry_points.txt +0 -0
- {mcp_vector_search-0.12.0.dist-info → mcp_vector_search-0.12.2.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.12.
|
|
3
|
+
Version: 0.12.2
|
|
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
|
|
161
|
+
|
|
162
|
+
# List configured integrations
|
|
163
|
+
mcp-vector-search uninstall list
|
|
164
|
+
```
|
|
148
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
|
|
@@ -427,6 +490,10 @@ uv sync
|
|
|
427
490
|
# Install in development mode
|
|
428
491
|
uv pip install -e .
|
|
429
492
|
|
|
493
|
+
# Test CLI from source (recommended during development)
|
|
494
|
+
./dev-mcp version # Shows [DEV] indicator
|
|
495
|
+
./dev-mcp search "test" # No reinstall needed after code changes
|
|
496
|
+
|
|
430
497
|
# Run tests
|
|
431
498
|
uv run pytest
|
|
432
499
|
|
|
@@ -435,6 +502,8 @@ uv run ruff check
|
|
|
435
502
|
uv run mypy src/
|
|
436
503
|
```
|
|
437
504
|
|
|
505
|
+
For detailed development workflow and `dev-mcp` usage, see the [Development](#-development) section below.
|
|
506
|
+
|
|
438
507
|
### Adding Language Support
|
|
439
508
|
|
|
440
509
|
1. Create a new parser in `src/mcp_vector_search/parsers/`
|
|
@@ -507,10 +576,64 @@ uv sync && uv pip install -e .
|
|
|
507
576
|
# Run development tests
|
|
508
577
|
./scripts/dev-test.sh
|
|
509
578
|
|
|
510
|
-
#
|
|
579
|
+
# Run CLI from source (recommended during development)
|
|
580
|
+
./dev-mcp version # Visual [DEV] indicator
|
|
581
|
+
./dev-mcp status # Any command works
|
|
582
|
+
./dev-mcp search "auth" # Immediate feedback on changes
|
|
583
|
+
|
|
584
|
+
# Alternative: use uv run directly
|
|
511
585
|
uv run mcp-vector-search version
|
|
512
586
|
```
|
|
513
587
|
|
|
588
|
+
#### Using the `dev-mcp` Development Helper
|
|
589
|
+
|
|
590
|
+
The `./dev-mcp` script provides a streamlined way to run the CLI from source code during development, eliminating the need for repeated installations.
|
|
591
|
+
|
|
592
|
+
**Key Features:**
|
|
593
|
+
- **Visual [DEV] Indicator**: Shows `[DEV]` prefix to distinguish from installed version
|
|
594
|
+
- **No Reinstall Required**: Reflects code changes immediately
|
|
595
|
+
- **Complete Argument Forwarding**: Works with all CLI commands and options
|
|
596
|
+
- **Verbose Mode**: Debug output with `--verbose` flag
|
|
597
|
+
- **Built-in Help**: Script usage with `--help`
|
|
598
|
+
|
|
599
|
+
**Usage Examples:**
|
|
600
|
+
```bash
|
|
601
|
+
# Basic commands (note the [DEV] prefix in output)
|
|
602
|
+
./dev-mcp version
|
|
603
|
+
./dev-mcp status
|
|
604
|
+
./dev-mcp index
|
|
605
|
+
./dev-mcp search "authentication logic"
|
|
606
|
+
|
|
607
|
+
# With CLI options
|
|
608
|
+
./dev-mcp search "error handling" --limit 10
|
|
609
|
+
./dev-mcp index --force
|
|
610
|
+
|
|
611
|
+
# Script verbose mode (shows Python interpreter, paths)
|
|
612
|
+
./dev-mcp --verbose search "database"
|
|
613
|
+
|
|
614
|
+
# Script help (shows dev-mcp usage, not CLI help)
|
|
615
|
+
./dev-mcp --help
|
|
616
|
+
|
|
617
|
+
# CLI command help (forwards --help to the CLI)
|
|
618
|
+
./dev-mcp search --help
|
|
619
|
+
./dev-mcp index --help
|
|
620
|
+
```
|
|
621
|
+
|
|
622
|
+
**When to Use:**
|
|
623
|
+
- **`./dev-mcp`** → Development workflow (runs from source code)
|
|
624
|
+
- **`mcp-vector-search`** → Production usage (runs installed version via pipx/pip)
|
|
625
|
+
|
|
626
|
+
**Benefits:**
|
|
627
|
+
- **Instant Feedback**: Changes to source code are reflected immediately
|
|
628
|
+
- **No Build Step**: Skip the reinstall cycle during active development
|
|
629
|
+
- **Clear Context**: Visual `[DEV]` indicator prevents confusion about which version is running
|
|
630
|
+
- **Error Handling**: Built-in checks for uv installation and project structure
|
|
631
|
+
|
|
632
|
+
**Requirements:**
|
|
633
|
+
- Must have `uv` installed (`pip install uv`)
|
|
634
|
+
- Must run from project root directory
|
|
635
|
+
- Requires `pyproject.toml` in current directory
|
|
636
|
+
|
|
514
637
|
**Stage B: Local Deployment Testing**
|
|
515
638
|
```bash
|
|
516
639
|
# Build and test clean deployment
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
mcp_vector_search/__init__.py,sha256=VI7aQii3CQwhLiBXYs4cQi58X3uMRZ9oKNT2G7olYd4,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=8yF15w74xq9uUT46ww-XNidBs7cSPVYV7mKiMS4bRqY,16318
|
|
5
|
+
mcp_vector_search/cli/export.py,sha256=iluxuRT2KELdKlQeDAlVkteiel4GGrng153UAw9H0as,10804
|
|
6
|
+
mcp_vector_search/cli/history.py,sha256=6wRrSfxpUe9hJXuaEeVxOVkFlcpqkIiGfwzDgd5N6c8,9323
|
|
7
|
+
mcp_vector_search/cli/interactive.py,sha256=T7P4dAdvbglznzQYgiePv5YNyOx9FeE57Y3OKYnnbYE,12744
|
|
8
|
+
mcp_vector_search/cli/main.py,sha256=K04RHtxfZUPRYWJDnqs6LmsBU9WoBVXIiAOIwBg400U,15783
|
|
9
|
+
mcp_vector_search/cli/output.py,sha256=7ShIk_UKzhDzRGxI6JluPu0gGkbmKOevqgIAKR4oCa0,12560
|
|
10
|
+
mcp_vector_search/cli/suggestions.py,sha256=h-UaxoLcHmFbhZSm0WG7nKJXAIRIqhv7aGsXijp7vA8,13273
|
|
11
|
+
mcp_vector_search/cli/commands/__init__.py,sha256=vQls-YKZ54YEwmf7g1dL0T2SS9D4pdQljXzsUChG_V4,42
|
|
12
|
+
mcp_vector_search/cli/commands/auto_index.py,sha256=imVVbxWRlA128NPdK9BetNNl3ELrsdq-hqcsLqyAmoM,12712
|
|
13
|
+
mcp_vector_search/cli/commands/config.py,sha256=mKE8gUgAOqCM__4yzEEu9HJPbx9X15lN264zkDJBRxg,12399
|
|
14
|
+
mcp_vector_search/cli/commands/demo.py,sha256=MVfEkYmA2abRFwAbk-lpa6P14_SLJBHZAuHb9d6d02U,10630
|
|
15
|
+
mcp_vector_search/cli/commands/index.py,sha256=QZZ8Io4Rg4ueS9WquXA_jFAfqAaxNwXK_e7v5orOcnE,24117
|
|
16
|
+
mcp_vector_search/cli/commands/init.py,sha256=2kdjtIPPeutKUXs65-6W1VQPF_BQrbV6_U3TCE7U5mw,23242
|
|
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
|
|
19
|
+
mcp_vector_search/cli/commands/mcp.py,sha256=Mk4g43R9yRiJVMxsDFUsZldKqY0yi2coQmhAqIMPklo,38958
|
|
20
|
+
mcp_vector_search/cli/commands/reset.py,sha256=bsIT6zjDf6gsvIkVaRaUClYzlTyNe--8t0NWkBY0ldU,13724
|
|
21
|
+
mcp_vector_search/cli/commands/search.py,sha256=yyou7wO9qZ_w2oiKdyOrk2WUxvkFpc-Up8hpflxYlyw,24802
|
|
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=VwzrMCOTfdjzDOrP3ry3SwW68YKYNRFKV4vzlbxfqRM,52331
|
|
25
|
+
mcp_vector_search/cli/commands/watch.py,sha256=2pyWRoo4fIppFnyQ4sW4IBLHmpb_IwnTjRnzHkVBPcQ,8927
|
|
26
|
+
mcp_vector_search/config/__init__.py,sha256=r_qAQkU5gc0EQ2pv8EQARACe4klhrR_WRJqCb9lfGc0,54
|
|
27
|
+
mcp_vector_search/config/constants.py,sha256=afXR6SvLLd8QYY4MG4s1vq-hCJiQsE5PhnE-XG9lvb4,1092
|
|
28
|
+
mcp_vector_search/config/defaults.py,sha256=CYeUOd5cTvyKDZpimgYEku28jeKo5w013dHiXxXP5kY,5128
|
|
29
|
+
mcp_vector_search/config/settings.py,sha256=m8o8j-tvWcuzrnNL6YWbi2fFbcB3lZY1kMNinJJUFCM,4328
|
|
30
|
+
mcp_vector_search/core/__init__.py,sha256=bWKtKmmaFs7gG5XPCbrx77UYIVeO1FF8wIJxpj1dLNw,48
|
|
31
|
+
mcp_vector_search/core/auto_indexer.py,sha256=0S4lZXaUgqEytMSA2FxQsh5hN7V1mbSLYVzEf_dslYQ,10307
|
|
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
|
|
35
|
+
mcp_vector_search/core/embeddings.py,sha256=wSMUNxZcuGPMxxQ1AbKqA1a3-0c6AiOqmuuI7OqTyaQ,10578
|
|
36
|
+
mcp_vector_search/core/exceptions.py,sha256=3bCjT8wmrLz_0e_Tayr90049zNTKYFWZa19kl0saKz8,1597
|
|
37
|
+
mcp_vector_search/core/factory.py,sha256=tM6Ft-V9buF7nn9xbRMU1ngji-BJOKt6BhtfQhFLmF4,10384
|
|
38
|
+
mcp_vector_search/core/git_hooks.py,sha256=xOfPpzgKoNTwM-vbhAihUucgudBQk45bCAVR5zJOFlQ,10878
|
|
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
|
|
42
|
+
mcp_vector_search/core/scheduler.py,sha256=PBSlu-ieDYCXOMGYY7QKv9UReFEDPHNmwnUv_xb4vxg,11761
|
|
43
|
+
mcp_vector_search/core/search.py,sha256=9OC8-KwWdbw4y4QPQ-VXfz0encVHTJWYLtah3_chqG8,33682
|
|
44
|
+
mcp_vector_search/core/watcher.py,sha256=-DFRCnuUfcqcTrkZPQqfJSvxKAxnpt-axgEj1V-B0O4,10862
|
|
45
|
+
mcp_vector_search/mcp/__init__.py,sha256=gfKR0QV7Jqvj5y0LMBe9gSghd5_rPsvm_rml0ryQtoY,158
|
|
46
|
+
mcp_vector_search/mcp/__main__.py,sha256=KgwB59HM5pRLe2Aj-fvDFcTp95lyT0wfmS3ENcx9gPc,571
|
|
47
|
+
mcp_vector_search/mcp/server.py,sha256=YmHyvJqg_CjxEN356ShFrTPLgDKzaLXyrt8tNHVryEY,28322
|
|
48
|
+
mcp_vector_search/parsers/__init__.py,sha256=jr0Yqz1xMok4lnG7_aXnkZThGuefrlAj8PWVbfeT3QQ,228
|
|
49
|
+
mcp_vector_search/parsers/base.py,sha256=dtezuhVgs9dAWlRYT23GGONyckWzTqkEj7Vcwor8C1k,9341
|
|
50
|
+
mcp_vector_search/parsers/dart.py,sha256=li2JP0vwpSsZnMNq0PweZCD_o-y1jUwubHlSA8nm8KQ,21816
|
|
51
|
+
mcp_vector_search/parsers/html.py,sha256=nzEVDV4oCBp3wpL8vp6WWx5eqiB39agu9E048JkuRJQ,13010
|
|
52
|
+
mcp_vector_search/parsers/javascript.py,sha256=uJMLTbY5NGDSf0817bZ6dQQuQMXLUfIEZzyPuxLxoBY,24337
|
|
53
|
+
mcp_vector_search/parsers/php.py,sha256=1QjnE8SAQF86VQ7pNfn1Pmpg5Dni4M7KCLU7212DkXM,24774
|
|
54
|
+
mcp_vector_search/parsers/python.py,sha256=SiiFySPqZuSMgoctElZCMm18XEA3p1x1qdm1uvYlj_4,19322
|
|
55
|
+
mcp_vector_search/parsers/registry.py,sha256=_a5TwQ19xRb8bQUJhybL04PdmIEXhZ0-6687QvZvE_M,6556
|
|
56
|
+
mcp_vector_search/parsers/ruby.py,sha256=xNn_z8txAWL7E1ULcFMiqn5idFhf5GQn8N3x1yE-c2k,23818
|
|
57
|
+
mcp_vector_search/parsers/text.py,sha256=jvMdFspbmrrOR1GSGzf2gvBDCXz1cPN_xemoDK4fUvM,6084
|
|
58
|
+
mcp_vector_search/parsers/utils.py,sha256=10vT-GJSeDUoGSIslz8zq4RyavFiMtizCmcnn9cbQqE,8103
|
|
59
|
+
mcp_vector_search/utils/__init__.py,sha256=Eq6lY-oPMfCt-GpPUbg9QbmTHuQVmTaVDBMU2183KVw,887
|
|
60
|
+
mcp_vector_search/utils/gitignore.py,sha256=hJHt5YsfEvLIfweaa968tGTavcbxqh3X5nSaeWOS_FA,8690
|
|
61
|
+
mcp_vector_search/utils/monorepo.py,sha256=leTYx4ffN4IO0wDg7OWYfXMWMPp2Q_uEHl5WQFNk5Hs,8657
|
|
62
|
+
mcp_vector_search/utils/timing.py,sha256=THC7mfbTYnUpnnDcblgQacYMzbEkfFoIShx6plmhCgg,11285
|
|
63
|
+
mcp_vector_search/utils/version.py,sha256=d7fS-CLemxb8UzZ9j18zH0Y0Ud097ljKKYYOPulnGPE,1138
|
|
64
|
+
mcp_vector_search/visualization/favicon-v1-1024.png,sha256=1pESJk22wsG29ryTC31884wnpP6tG1AAJZJlxUBcZu8,3129
|
|
65
|
+
mcp_vector_search/visualization/favicon-v1-128.png,sha256=29jmI1odupCm1eUZnbQhtunwN9VmQ9Ld7AGxivt65ko,127
|
|
66
|
+
mcp_vector_search/visualization/favicon-v1-16.png,sha256=WEitLws7EWu9zvgmYV0JNklwtRJNZmzhq_nuixD5_TY,74
|
|
67
|
+
mcp_vector_search/visualization/favicon-v1-256.png,sha256=o2hBl9H7pjH2Ovp5HRUF5uQS_BxQXTE2vyZLiiX-cRg,270
|
|
68
|
+
mcp_vector_search/visualization/favicon-v1-32.png,sha256=_t-DLHfL_pBXbYtKJLi02wOeGP_HH11QWdElS3fc9uU,83
|
|
69
|
+
mcp_vector_search/visualization/favicon-v1-512.png,sha256=Fwfv5FcwfQpeL1oewc_1WypEKG88TY3aMr85S-iWO4s,843
|
|
70
|
+
mcp_vector_search/visualization/favicon-v1-64.png,sha256=nD-ibvLuxrrmDjhiIf1hIWMsyOIkozk2W7fakDCmlF0,91
|
|
71
|
+
mcp_vector_search/visualization/favicon-v1.ico,sha256=VYru2inbgzlru_ZLpqOO_rMrGxCGU7_eFcMuLx2Bx58,96
|
|
72
|
+
mcp_vector_search/visualization/favicon-v2-1024.png,sha256=1pESJk22wsG29ryTC31884wnpP6tG1AAJZJlxUBcZu8,3129
|
|
73
|
+
mcp_vector_search/visualization/favicon-v2-128.png,sha256=29jmI1odupCm1eUZnbQhtunwN9VmQ9Ld7AGxivt65ko,127
|
|
74
|
+
mcp_vector_search/visualization/favicon-v2-16.png,sha256=WEitLws7EWu9zvgmYV0JNklwtRJNZmzhq_nuixD5_TY,74
|
|
75
|
+
mcp_vector_search/visualization/favicon-v2-256.png,sha256=o2hBl9H7pjH2Ovp5HRUF5uQS_BxQXTE2vyZLiiX-cRg,270
|
|
76
|
+
mcp_vector_search/visualization/favicon-v2-32.png,sha256=_t-DLHfL_pBXbYtKJLi02wOeGP_HH11QWdElS3fc9uU,83
|
|
77
|
+
mcp_vector_search/visualization/favicon-v2-512.png,sha256=Fwfv5FcwfQpeL1oewc_1WypEKG88TY3aMr85S-iWO4s,843
|
|
78
|
+
mcp_vector_search/visualization/favicon-v2-64.png,sha256=nD-ibvLuxrrmDjhiIf1hIWMsyOIkozk2W7fakDCmlF0,91
|
|
79
|
+
mcp_vector_search/visualization/favicon-v2.ico,sha256=VYru2inbgzlru_ZLpqOO_rMrGxCGU7_eFcMuLx2Bx58,96
|
|
80
|
+
mcp_vector_search/visualization/favicon-v3-1024.png,sha256=1pESJk22wsG29ryTC31884wnpP6tG1AAJZJlxUBcZu8,3129
|
|
81
|
+
mcp_vector_search/visualization/favicon-v3-128.png,sha256=29jmI1odupCm1eUZnbQhtunwN9VmQ9Ld7AGxivt65ko,127
|
|
82
|
+
mcp_vector_search/visualization/favicon-v3-16.png,sha256=WEitLws7EWu9zvgmYV0JNklwtRJNZmzhq_nuixD5_TY,74
|
|
83
|
+
mcp_vector_search/visualization/favicon-v3-256.png,sha256=o2hBl9H7pjH2Ovp5HRUF5uQS_BxQXTE2vyZLiiX-cRg,270
|
|
84
|
+
mcp_vector_search/visualization/favicon-v3-32.png,sha256=_t-DLHfL_pBXbYtKJLi02wOeGP_HH11QWdElS3fc9uU,83
|
|
85
|
+
mcp_vector_search/visualization/favicon-v3-512.png,sha256=Fwfv5FcwfQpeL1oewc_1WypEKG88TY3aMr85S-iWO4s,843
|
|
86
|
+
mcp_vector_search/visualization/favicon-v3-64.png,sha256=nD-ibvLuxrrmDjhiIf1hIWMsyOIkozk2W7fakDCmlF0,91
|
|
87
|
+
mcp_vector_search/visualization/favicon-v3.ico,sha256=VYru2inbgzlru_ZLpqOO_rMrGxCGU7_eFcMuLx2Bx58,96
|
|
88
|
+
mcp_vector_search/visualization/index.html,sha256=10dKa2itpjqxw9aHMs-HWpw5WWTe5EB1NqYRs5fnxxw,36830
|
|
89
|
+
mcp_vector_search-0.12.2.dist-info/METADATA,sha256=zZzHr70_Z_MueRsrzCSCrUJU5WcXl97fs7WrA6zrIhQ,22839
|
|
90
|
+
mcp_vector_search-0.12.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
91
|
+
mcp_vector_search-0.12.2.dist-info/entry_points.txt,sha256=y3Ygtc_JiBchNEIL-tPABo7EbzBExGAxwGdkkeP5D2I,86
|
|
92
|
+
mcp_vector_search-0.12.2.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
|
|
93
|
+
mcp_vector_search-0.12.2.dist-info/RECORD,,
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
mcp_vector_search/__init__.py,sha256=XMtvUz8Fx117CAJKiBO-AUwnBj066mJTSqmdfyZZxEM,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=F_ss-EX4F9RgnMsEhdTwLpyNCah9SqnBZc2tBtzASck,15918
|
|
5
|
-
mcp_vector_search/cli/export.py,sha256=iluxuRT2KELdKlQeDAlVkteiel4GGrng153UAw9H0as,10804
|
|
6
|
-
mcp_vector_search/cli/history.py,sha256=6wRrSfxpUe9hJXuaEeVxOVkFlcpqkIiGfwzDgd5N6c8,9323
|
|
7
|
-
mcp_vector_search/cli/interactive.py,sha256=T7P4dAdvbglznzQYgiePv5YNyOx9FeE57Y3OKYnnbYE,12744
|
|
8
|
-
mcp_vector_search/cli/main.py,sha256=oFyuocKZK9fN4XY1xejPgI3lMo4E0dplJ4SasfLZluo,14770
|
|
9
|
-
mcp_vector_search/cli/output.py,sha256=7ShIk_UKzhDzRGxI6JluPu0gGkbmKOevqgIAKR4oCa0,12560
|
|
10
|
-
mcp_vector_search/cli/suggestions.py,sha256=h-UaxoLcHmFbhZSm0WG7nKJXAIRIqhv7aGsXijp7vA8,13273
|
|
11
|
-
mcp_vector_search/cli/commands/__init__.py,sha256=vQls-YKZ54YEwmf7g1dL0T2SS9D4pdQljXzsUChG_V4,42
|
|
12
|
-
mcp_vector_search/cli/commands/auto_index.py,sha256=imVVbxWRlA128NPdK9BetNNl3ELrsdq-hqcsLqyAmoM,12712
|
|
13
|
-
mcp_vector_search/cli/commands/config.py,sha256=mKE8gUgAOqCM__4yzEEu9HJPbx9X15lN264zkDJBRxg,12399
|
|
14
|
-
mcp_vector_search/cli/commands/demo.py,sha256=MVfEkYmA2abRFwAbk-lpa6P14_SLJBHZAuHb9d6d02U,10630
|
|
15
|
-
mcp_vector_search/cli/commands/index.py,sha256=2coH6Q5dgjSVn84rCR6nI3H9kVc6-V1BK3m4Z_4szp4,24401
|
|
16
|
-
mcp_vector_search/cli/commands/init.py,sha256=2kdjtIPPeutKUXs65-6W1VQPF_BQrbV6_U3TCE7U5mw,23242
|
|
17
|
-
mcp_vector_search/cli/commands/install.py,sha256=phk7Eb7UOU5IsRfJyaDPdOfdUWli9gyA4cHjhgXcNEI,24609
|
|
18
|
-
mcp_vector_search/cli/commands/mcp.py,sha256=Mk4g43R9yRiJVMxsDFUsZldKqY0yi2coQmhAqIMPklo,38958
|
|
19
|
-
mcp_vector_search/cli/commands/reset.py,sha256=bsIT6zjDf6gsvIkVaRaUClYzlTyNe--8t0NWkBY0ldU,13724
|
|
20
|
-
mcp_vector_search/cli/commands/search.py,sha256=yyou7wO9qZ_w2oiKdyOrk2WUxvkFpc-Up8hpflxYlyw,24802
|
|
21
|
-
mcp_vector_search/cli/commands/status.py,sha256=sa_0QHioCmPF5A7obqV2ls-9kmX_JYo7nq3XUe1dmrg,19630
|
|
22
|
-
mcp_vector_search/cli/commands/visualize.py,sha256=AGzpyKAsIZObHkDLiDJCi8D7Qn1CfQOrXZKAVXEZLJM,41547
|
|
23
|
-
mcp_vector_search/cli/commands/watch.py,sha256=2pyWRoo4fIppFnyQ4sW4IBLHmpb_IwnTjRnzHkVBPcQ,8927
|
|
24
|
-
mcp_vector_search/config/__init__.py,sha256=r_qAQkU5gc0EQ2pv8EQARACe4klhrR_WRJqCb9lfGc0,54
|
|
25
|
-
mcp_vector_search/config/constants.py,sha256=afXR6SvLLd8QYY4MG4s1vq-hCJiQsE5PhnE-XG9lvb4,1092
|
|
26
|
-
mcp_vector_search/config/defaults.py,sha256=CYeUOd5cTvyKDZpimgYEku28jeKo5w013dHiXxXP5kY,5128
|
|
27
|
-
mcp_vector_search/config/settings.py,sha256=m8o8j-tvWcuzrnNL6YWbi2fFbcB3lZY1kMNinJJUFCM,4328
|
|
28
|
-
mcp_vector_search/core/__init__.py,sha256=bWKtKmmaFs7gG5XPCbrx77UYIVeO1FF8wIJxpj1dLNw,48
|
|
29
|
-
mcp_vector_search/core/auto_indexer.py,sha256=0S4lZXaUgqEytMSA2FxQsh5hN7V1mbSLYVzEf_dslYQ,10307
|
|
30
|
-
mcp_vector_search/core/connection_pool.py,sha256=Yo-gUQQbHawtuvh6OcJiAlbbvWQGQBd31QZOvs498fg,11224
|
|
31
|
-
mcp_vector_search/core/database.py,sha256=GYGdVop2wuYxR9aTiRu-SApG3AwgEASLJlOGACB8hVw,46493
|
|
32
|
-
mcp_vector_search/core/directory_index.py,sha256=WBgk3cm7fmTuchnD4t2haxqJ6S0a6MrUCkOYdwL_48Q,10982
|
|
33
|
-
mcp_vector_search/core/embeddings.py,sha256=wSMUNxZcuGPMxxQ1AbKqA1a3-0c6AiOqmuuI7OqTyaQ,10578
|
|
34
|
-
mcp_vector_search/core/exceptions.py,sha256=3bCjT8wmrLz_0e_Tayr90049zNTKYFWZa19kl0saKz8,1597
|
|
35
|
-
mcp_vector_search/core/factory.py,sha256=tM6Ft-V9buF7nn9xbRMU1ngji-BJOKt6BhtfQhFLmF4,10384
|
|
36
|
-
mcp_vector_search/core/git_hooks.py,sha256=xOfPpzgKoNTwM-vbhAihUucgudBQk45bCAVR5zJOFlQ,10878
|
|
37
|
-
mcp_vector_search/core/indexer.py,sha256=2qyYbxSMUgHhgkV3E1rxplKl-Pf-A_FMxm5W0Ek9q3M,34521
|
|
38
|
-
mcp_vector_search/core/models.py,sha256=ydd1UOJd7ln_x85J-HMyKuDcLpXFyg7rfvhcX_qkH0Q,11601
|
|
39
|
-
mcp_vector_search/core/project.py,sha256=l81uc5B4CB8VXDbcHzF-_CagxIERDh23tH0iNqTePTs,10403
|
|
40
|
-
mcp_vector_search/core/scheduler.py,sha256=PBSlu-ieDYCXOMGYY7QKv9UReFEDPHNmwnUv_xb4vxg,11761
|
|
41
|
-
mcp_vector_search/core/search.py,sha256=9OC8-KwWdbw4y4QPQ-VXfz0encVHTJWYLtah3_chqG8,33682
|
|
42
|
-
mcp_vector_search/core/watcher.py,sha256=-DFRCnuUfcqcTrkZPQqfJSvxKAxnpt-axgEj1V-B0O4,10862
|
|
43
|
-
mcp_vector_search/mcp/__init__.py,sha256=gfKR0QV7Jqvj5y0LMBe9gSghd5_rPsvm_rml0ryQtoY,158
|
|
44
|
-
mcp_vector_search/mcp/__main__.py,sha256=KgwB59HM5pRLe2Aj-fvDFcTp95lyT0wfmS3ENcx9gPc,571
|
|
45
|
-
mcp_vector_search/mcp/server.py,sha256=YmHyvJqg_CjxEN356ShFrTPLgDKzaLXyrt8tNHVryEY,28322
|
|
46
|
-
mcp_vector_search/parsers/__init__.py,sha256=jr0Yqz1xMok4lnG7_aXnkZThGuefrlAj8PWVbfeT3QQ,228
|
|
47
|
-
mcp_vector_search/parsers/base.py,sha256=KS0bJeGoZamdqGS7KdAOGFxO_P_-TsjrlBnuzeu8B5U,8768
|
|
48
|
-
mcp_vector_search/parsers/dart.py,sha256=li2JP0vwpSsZnMNq0PweZCD_o-y1jUwubHlSA8nm8KQ,21816
|
|
49
|
-
mcp_vector_search/parsers/html.py,sha256=nzEVDV4oCBp3wpL8vp6WWx5eqiB39agu9E048JkuRJQ,13010
|
|
50
|
-
mcp_vector_search/parsers/javascript.py,sha256=BPBesLTf3wAMw6di7bx2HclDkxc0am2Bp4uLHXQ1BxI,23789
|
|
51
|
-
mcp_vector_search/parsers/php.py,sha256=1QjnE8SAQF86VQ7pNfn1Pmpg5Dni4M7KCLU7212DkXM,24774
|
|
52
|
-
mcp_vector_search/parsers/python.py,sha256=1KwubEIpyxHPCnlxN8EMb745A14JJ7J4YO2iVOeuHfs,19092
|
|
53
|
-
mcp_vector_search/parsers/registry.py,sha256=L00EUp58ff_xatgQW-cBvE0AVBQi7cGtvr6zWV_NYbc,6457
|
|
54
|
-
mcp_vector_search/parsers/ruby.py,sha256=xNn_z8txAWL7E1ULcFMiqn5idFhf5GQn8N3x1yE-c2k,23818
|
|
55
|
-
mcp_vector_search/parsers/text.py,sha256=jvMdFspbmrrOR1GSGzf2gvBDCXz1cPN_xemoDK4fUvM,6084
|
|
56
|
-
mcp_vector_search/parsers/utils.py,sha256=10vT-GJSeDUoGSIslz8zq4RyavFiMtizCmcnn9cbQqE,8103
|
|
57
|
-
mcp_vector_search/utils/__init__.py,sha256=Eq6lY-oPMfCt-GpPUbg9QbmTHuQVmTaVDBMU2183KVw,887
|
|
58
|
-
mcp_vector_search/utils/gitignore.py,sha256=UFu0YTjdy1CHArNhOT6s43-Q6wjIqRH2G90E9GuFotA,8684
|
|
59
|
-
mcp_vector_search/utils/monorepo.py,sha256=leTYx4ffN4IO0wDg7OWYfXMWMPp2Q_uEHl5WQFNk5Hs,8657
|
|
60
|
-
mcp_vector_search/utils/timing.py,sha256=THC7mfbTYnUpnnDcblgQacYMzbEkfFoIShx6plmhCgg,11285
|
|
61
|
-
mcp_vector_search/utils/version.py,sha256=d7fS-CLemxb8UzZ9j18zH0Y0Ud097ljKKYYOPulnGPE,1138
|
|
62
|
-
mcp_vector_search/visualization/index.html,sha256=OHbMTjsyFXj0s8vKd9MjCgfIEflWfSlNNBTDUzOxgfM,22899
|
|
63
|
-
mcp_vector_search-0.12.0.dist-info/METADATA,sha256=l06Me377kppL0--MOLuyZzsAKU7UyO8vH60WLXFPi0I,19121
|
|
64
|
-
mcp_vector_search-0.12.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
65
|
-
mcp_vector_search-0.12.0.dist-info/entry_points.txt,sha256=y3Ygtc_JiBchNEIL-tPABo7EbzBExGAxwGdkkeP5D2I,86
|
|
66
|
-
mcp_vector_search-0.12.0.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
|
|
67
|
-
mcp_vector_search-0.12.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|