mcp-vector-search 0.12.6__py3-none-any.whl → 1.1.22__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.
Files changed (92) hide show
  1. mcp_vector_search/__init__.py +3 -3
  2. mcp_vector_search/analysis/__init__.py +111 -0
  3. mcp_vector_search/analysis/baseline/__init__.py +68 -0
  4. mcp_vector_search/analysis/baseline/comparator.py +462 -0
  5. mcp_vector_search/analysis/baseline/manager.py +621 -0
  6. mcp_vector_search/analysis/collectors/__init__.py +74 -0
  7. mcp_vector_search/analysis/collectors/base.py +164 -0
  8. mcp_vector_search/analysis/collectors/cohesion.py +463 -0
  9. mcp_vector_search/analysis/collectors/complexity.py +743 -0
  10. mcp_vector_search/analysis/collectors/coupling.py +1162 -0
  11. mcp_vector_search/analysis/collectors/halstead.py +514 -0
  12. mcp_vector_search/analysis/collectors/smells.py +325 -0
  13. mcp_vector_search/analysis/debt.py +516 -0
  14. mcp_vector_search/analysis/interpretation.py +685 -0
  15. mcp_vector_search/analysis/metrics.py +414 -0
  16. mcp_vector_search/analysis/reporters/__init__.py +7 -0
  17. mcp_vector_search/analysis/reporters/console.py +646 -0
  18. mcp_vector_search/analysis/reporters/markdown.py +480 -0
  19. mcp_vector_search/analysis/reporters/sarif.py +377 -0
  20. mcp_vector_search/analysis/storage/__init__.py +93 -0
  21. mcp_vector_search/analysis/storage/metrics_store.py +762 -0
  22. mcp_vector_search/analysis/storage/schema.py +245 -0
  23. mcp_vector_search/analysis/storage/trend_tracker.py +560 -0
  24. mcp_vector_search/analysis/trends.py +308 -0
  25. mcp_vector_search/analysis/visualizer/__init__.py +90 -0
  26. mcp_vector_search/analysis/visualizer/d3_data.py +534 -0
  27. mcp_vector_search/analysis/visualizer/exporter.py +484 -0
  28. mcp_vector_search/analysis/visualizer/html_report.py +2895 -0
  29. mcp_vector_search/analysis/visualizer/schemas.py +525 -0
  30. mcp_vector_search/cli/commands/analyze.py +1062 -0
  31. mcp_vector_search/cli/commands/chat.py +1455 -0
  32. mcp_vector_search/cli/commands/index.py +621 -5
  33. mcp_vector_search/cli/commands/index_background.py +467 -0
  34. mcp_vector_search/cli/commands/init.py +13 -0
  35. mcp_vector_search/cli/commands/install.py +597 -335
  36. mcp_vector_search/cli/commands/install_old.py +8 -4
  37. mcp_vector_search/cli/commands/mcp.py +78 -6
  38. mcp_vector_search/cli/commands/reset.py +68 -26
  39. mcp_vector_search/cli/commands/search.py +224 -8
  40. mcp_vector_search/cli/commands/setup.py +1184 -0
  41. mcp_vector_search/cli/commands/status.py +339 -5
  42. mcp_vector_search/cli/commands/uninstall.py +276 -357
  43. mcp_vector_search/cli/commands/visualize/__init__.py +39 -0
  44. mcp_vector_search/cli/commands/visualize/cli.py +292 -0
  45. mcp_vector_search/cli/commands/visualize/exporters/__init__.py +12 -0
  46. mcp_vector_search/cli/commands/visualize/exporters/html_exporter.py +33 -0
  47. mcp_vector_search/cli/commands/visualize/exporters/json_exporter.py +33 -0
  48. mcp_vector_search/cli/commands/visualize/graph_builder.py +647 -0
  49. mcp_vector_search/cli/commands/visualize/layout_engine.py +469 -0
  50. mcp_vector_search/cli/commands/visualize/server.py +600 -0
  51. mcp_vector_search/cli/commands/visualize/state_manager.py +428 -0
  52. mcp_vector_search/cli/commands/visualize/templates/__init__.py +16 -0
  53. mcp_vector_search/cli/commands/visualize/templates/base.py +234 -0
  54. mcp_vector_search/cli/commands/visualize/templates/scripts.py +4542 -0
  55. mcp_vector_search/cli/commands/visualize/templates/styles.py +2522 -0
  56. mcp_vector_search/cli/didyoumean.py +27 -2
  57. mcp_vector_search/cli/main.py +127 -160
  58. mcp_vector_search/cli/output.py +158 -13
  59. mcp_vector_search/config/__init__.py +4 -0
  60. mcp_vector_search/config/default_thresholds.yaml +52 -0
  61. mcp_vector_search/config/settings.py +12 -0
  62. mcp_vector_search/config/thresholds.py +273 -0
  63. mcp_vector_search/core/__init__.py +16 -0
  64. mcp_vector_search/core/auto_indexer.py +3 -3
  65. mcp_vector_search/core/boilerplate.py +186 -0
  66. mcp_vector_search/core/config_utils.py +394 -0
  67. mcp_vector_search/core/database.py +406 -94
  68. mcp_vector_search/core/embeddings.py +24 -0
  69. mcp_vector_search/core/exceptions.py +11 -0
  70. mcp_vector_search/core/git.py +380 -0
  71. mcp_vector_search/core/git_hooks.py +4 -4
  72. mcp_vector_search/core/indexer.py +632 -54
  73. mcp_vector_search/core/llm_client.py +756 -0
  74. mcp_vector_search/core/models.py +91 -1
  75. mcp_vector_search/core/project.py +17 -0
  76. mcp_vector_search/core/relationships.py +473 -0
  77. mcp_vector_search/core/scheduler.py +11 -11
  78. mcp_vector_search/core/search.py +179 -29
  79. mcp_vector_search/mcp/server.py +819 -9
  80. mcp_vector_search/parsers/python.py +285 -5
  81. mcp_vector_search/utils/__init__.py +2 -0
  82. mcp_vector_search/utils/gitignore.py +0 -3
  83. mcp_vector_search/utils/gitignore_updater.py +212 -0
  84. mcp_vector_search/utils/monorepo.py +66 -4
  85. mcp_vector_search/utils/timing.py +10 -6
  86. {mcp_vector_search-0.12.6.dist-info → mcp_vector_search-1.1.22.dist-info}/METADATA +184 -53
  87. mcp_vector_search-1.1.22.dist-info/RECORD +120 -0
  88. {mcp_vector_search-0.12.6.dist-info → mcp_vector_search-1.1.22.dist-info}/WHEEL +1 -1
  89. {mcp_vector_search-0.12.6.dist-info → mcp_vector_search-1.1.22.dist-info}/entry_points.txt +1 -0
  90. mcp_vector_search/cli/commands/visualize.py +0 -1467
  91. mcp_vector_search-0.12.6.dist-info/RECORD +0 -68
  92. {mcp_vector_search-0.12.6.dist-info → mcp_vector_search-1.1.22.dist-info}/licenses/LICENSE +0 -0
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-vector-search
3
- Version: 0.12.6
4
- Summary: CLI-first semantic code search with MCP integration
3
+ Version: 1.1.22
4
+ Summary: CLI-first semantic code search with MCP integration and interactive D3.js visualization for exploring code relationships
5
5
  Project-URL: Homepage, https://github.com/bobmatnyc/mcp-vector-search
6
6
  Project-URL: Documentation, https://mcp-vector-search.readthedocs.io
7
7
  Project-URL: Repository, https://github.com/bobmatnyc/mcp-vector-search
8
8
  Project-URL: Bug Tracker, https://github.com/bobmatnyc/mcp-vector-search/issues
9
- Author-email: Robert Matsuoka <bobmatnyc@gmail.com>
9
+ Author-email: Robert Matsuoka <bob@matsuoka.com>
10
10
  License: MIT License
11
11
 
12
12
  Copyright (c) 2024 Robert Matsuoka
@@ -29,30 +29,37 @@ License: MIT License
29
29
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30
30
  SOFTWARE.
31
31
  License-File: LICENSE
32
- Keywords: code-search,mcp,semantic-search,vector-database
32
+ Keywords: code-graph,code-search,d3js,force-layout,interactive-graph,mcp,semantic-search,vector-database,visualization
33
33
  Classifier: Development Status :: 3 - Alpha
34
34
  Classifier: Intended Audience :: Developers
35
35
  Classifier: License :: OSI Approved :: MIT License
36
36
  Classifier: Programming Language :: Python :: 3.11
37
37
  Classifier: Programming Language :: Python :: 3.12
38
+ Classifier: Topic :: Scientific/Engineering :: Visualization
38
39
  Classifier: Topic :: Software Development :: Code Generators
39
40
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
41
+ Classifier: Topic :: Software Development :: Quality Assurance
40
42
  Requires-Python: >=3.11
41
43
  Requires-Dist: aiofiles>=23.0.0
42
44
  Requires-Dist: authlib>=1.6.4
43
45
  Requires-Dist: chromadb>=0.5.0
44
46
  Requires-Dist: click-didyoumean>=0.3.0
47
+ Requires-Dist: fastapi>=0.104.0
45
48
  Requires-Dist: httpx>=0.25.0
46
49
  Requires-Dist: loguru>=0.7.0
47
50
  Requires-Dist: mcp>=1.12.4
51
+ Requires-Dist: orjson>=3.9.0
48
52
  Requires-Dist: packaging>=23.0
53
+ Requires-Dist: py-mcp-installer>=0.1.4
49
54
  Requires-Dist: pydantic-settings>=2.1.0
50
55
  Requires-Dist: pydantic>=2.5.0
51
56
  Requires-Dist: rich>=13.0.0
52
57
  Requires-Dist: sentence-transformers>=2.2.2
58
+ Requires-Dist: starlette>=0.49.1
53
59
  Requires-Dist: tree-sitter-language-pack>=0.9.0
54
60
  Requires-Dist: tree-sitter>=0.20.1
55
61
  Requires-Dist: typer>=0.9.0
62
+ Requires-Dist: uvicorn>=0.24.0
56
63
  Requires-Dist: watchdog>=3.0.0
57
64
  Description-Content-Type: text/markdown
58
65
 
@@ -64,7 +71,7 @@ Description-Content-Type: text/markdown
64
71
  [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
65
72
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
66
73
 
67
- > ⚠️ **Alpha Release (v0.7.1)**: This is an early-stage project under active development. Expect breaking changes and rough edges. Feedback and contributions are welcome!
74
+ > ⚠️ **Alpha Release (v0.12.7)**: This is an early-stage project under active development. Expect breaking changes and rough edges. Feedback and contributions are welcome!
68
75
 
69
76
  A modern, fast, and intelligent code search tool that understands your codebase through semantic analysis and AST parsing. Built with Python, powered by ChromaDB, and designed for developer productivity.
70
77
 
@@ -99,11 +106,11 @@ A modern, fast, and intelligent code search tool that understands your codebase
99
106
  ### Installation
100
107
 
101
108
  ```bash
102
- # Install from PyPI
109
+ # Install from PyPI (recommended)
103
110
  pip install mcp-vector-search
104
111
 
105
- # Or with UV (recommended)
106
- uv add mcp-vector-search
112
+ # Or with UV (faster)
113
+ uv pip install mcp-vector-search
107
114
 
108
115
  # Or install from source
109
116
  git clone https://github.com/bobmatnyc/mcp-vector-search.git
@@ -111,20 +118,77 @@ cd mcp-vector-search
111
118
  uv sync && uv pip install -e .
112
119
  ```
113
120
 
114
- ### Complete Setup (One Command)
121
+ **Verify Installation:**
122
+ ```bash
123
+ # Check that all dependencies are installed correctly
124
+ mcp-vector-search doctor
125
+
126
+ # Should show all ✓ marks
127
+ # If you see missing dependencies, try:
128
+ pip install --upgrade mcp-vector-search
129
+ ```
130
+
131
+ ### Zero-Config Setup (Recommended)
115
132
 
116
- The **hierarchical install command** (v0.13.0) provides complete project setup and MCP integration management:
133
+ The fastest way to get started - **completely hands-off, just one command**:
117
134
 
118
135
  ```bash
119
- # Quick setup (recommended)
120
- mcp-vector-search install
136
+ # Smart zero-config setup (recommended)
137
+ mcp-vector-search setup
138
+ ```
139
+
140
+ **What `setup` does automatically:**
141
+ - ✅ Detects your project's languages and file types
142
+ - ✅ Initializes semantic search with optimal settings
143
+ - ✅ Indexes your entire codebase
144
+ - ✅ Configures ALL installed MCP platforms (Claude Code, Cursor, etc.)
145
+ - ✅ **Uses native Claude CLI integration** (`claude mcp add`) when available
146
+ - ✅ **Falls back to `.mcp.json`** if Claude CLI not available
147
+ - ✅ Sets up file watching for auto-reindex
148
+ - ✅ **Zero user input required!**
149
+
150
+ **Behind the scenes:**
151
+ - **Server name**: `mcp` (for consistency with other MCP projects)
152
+ - **Command**: `uv run python -m mcp_vector_search.mcp.server {PROJECT_ROOT}`
153
+ - **File watching**: Enabled via `MCP_ENABLE_FILE_WATCHING=true`
154
+ - **Integration method**: Native `claude mcp add` (or `.mcp.json` fallback)
155
+
156
+ **Example output:**
157
+ ```
158
+ 🚀 Smart Setup for mcp-vector-search
159
+ 🔍 Detecting project...
160
+ ✅ Found 3 language(s): Python, JavaScript, TypeScript
161
+ ✅ Detected 8 file type(s)
162
+ ✅ Found 2 platform(s): claude-code, cursor
163
+ ⚙️ Configuring...
164
+ ✅ Embedding model: sentence-transformers/all-MiniLM-L6-v2
165
+ 🚀 Initializing...
166
+ ✅ Vector database created
167
+ ✅ Configuration saved
168
+ 🔍 Indexing codebase...
169
+ ✅ Indexing completed in 12.3s
170
+ 🔗 Configuring MCP integrations...
171
+ ✅ Using Claude CLI for automatic setup
172
+ ✅ Registered with Claude CLI
173
+ ✅ Configured 2 platform(s)
174
+ 🎉 Setup Complete!
175
+ ```
176
+
177
+ **Options:**
178
+ ```bash
179
+ # Force re-setup
180
+ mcp-vector-search setup --force
181
+
182
+ # Verbose output for debugging (shows Claude CLI commands)
183
+ mcp-vector-search setup --verbose
184
+ ```
185
+
186
+ ### Advanced Setup Options
121
187
 
122
- # This will:
123
- # 1. Initialize your project configuration
124
- # 2. Automatically index your codebase
125
- # 3. Provide next-step hints for MCP integration
188
+ For more control over the installation process:
126
189
 
127
- # Install with all MCP integrations at once
190
+ ```bash
191
+ # Manual setup with MCP integration
128
192
  mcp-vector-search install --with-mcp
129
193
 
130
194
  # Custom file extensions
@@ -132,10 +196,20 @@ mcp-vector-search install --extensions .py,.js,.ts,.dart
132
196
 
133
197
  # Skip automatic indexing
134
198
  mcp-vector-search install --no-auto-index
199
+
200
+ # Just initialize (no indexing or MCP)
201
+ mcp-vector-search init
135
202
  ```
136
203
 
137
204
  ### Add MCP Integration for AI Tools
138
205
 
206
+ **Automatic (Recommended):**
207
+ ```bash
208
+ # One command sets up all detected platforms
209
+ mcp-vector-search setup
210
+ ```
211
+
212
+ **Manual Platform Installation:**
139
213
  ```bash
140
214
  # Add Claude Code integration (project-scoped)
141
215
  mcp-vector-search install claude-code
@@ -143,13 +217,12 @@ mcp-vector-search install claude-code
143
217
  # Add Cursor IDE integration (global)
144
218
  mcp-vector-search install cursor
145
219
 
146
- # Add Claude Desktop integration (global)
147
- mcp-vector-search install claude-desktop
148
-
149
220
  # See all available platforms
150
221
  mcp-vector-search install list
151
222
  ```
152
223
 
224
+ **Note**: The `setup` command uses native `claude mcp add` when Claude CLI is available, providing better integration than manual `.mcp.json` creation.
225
+
153
226
  ### Remove MCP Integrations
154
227
 
155
228
  ```bash
@@ -171,7 +244,7 @@ mcp-vector-search search "authentication logic"
171
244
  mcp-vector-search search "database connection setup"
172
245
  mcp-vector-search search "error handling patterns"
173
246
 
174
- # Index your codebase (if not done during install)
247
+ # Index your codebase (if not done during setup)
175
248
  mcp-vector-search index
176
249
 
177
250
  # Check project status
@@ -194,7 +267,7 @@ $ mcp-vector-search indx
194
267
  No such command 'indx'. Did you mean 'index'?
195
268
  ```
196
269
 
197
- See [docs/CLI_FEATURES.md](docs/CLI_FEATURES.md) for more details.
270
+ See [docs/guides/cli-usage.md](docs/guides/cli-usage.md) for more details.
198
271
 
199
272
  ## Versioning & Releasing
200
273
 
@@ -205,15 +278,49 @@ This project uses semantic versioning with an automated release workflow.
205
278
  - `make release-patch` - Create patch release
206
279
  - `make publish` - Publish to PyPI
207
280
 
208
- See [docs/VERSIONING_WORKFLOW.md](docs/VERSIONING_WORKFLOW.md) for complete documentation.
281
+ See [docs/development/versioning.md](docs/development/versioning.md) for complete documentation.
209
282
 
210
283
  ## 📖 Documentation
211
284
 
212
285
  ### Commands
213
286
 
214
- #### `install` - Install Project and MCP Integrations (v0.13.0)
287
+ #### `setup` - Zero-Config Smart Setup (Recommended)
215
288
  ```bash
216
- # Quick setup (recommended)
289
+ # One command to do everything (recommended)
290
+ mcp-vector-search setup
291
+
292
+ # What it does automatically:
293
+ # - Detects project languages and file types
294
+ # - Initializes semantic search
295
+ # - Indexes entire codebase
296
+ # - Configures all detected MCP platforms
297
+ # - Sets up file watching
298
+ # - Zero configuration needed!
299
+
300
+ # Force re-setup
301
+ mcp-vector-search setup --force
302
+
303
+ # Verbose output for debugging
304
+ mcp-vector-search setup --verbose
305
+ ```
306
+
307
+ **Key Features:**
308
+ - **Zero Configuration**: No user input required
309
+ - **Smart Detection**: Automatically discovers languages and platforms
310
+ - **Comprehensive**: Handles init + index + MCP setup in one command
311
+ - **Idempotent**: Safe to run multiple times
312
+ - **Fast**: Timeout-protected scanning (won't hang on large projects)
313
+ - **Team-Friendly**: Commit `.mcp.json` to share configuration
314
+
315
+ **When to use:**
316
+ - ✅ First-time project setup
317
+ - ✅ Team onboarding
318
+ - ✅ Quick testing in new codebases
319
+ - ✅ Setting up multiple MCP platforms at once
320
+
321
+ #### `install` - Install Project and MCP Integrations (Advanced)
322
+ ```bash
323
+ # Manual setup with more control
217
324
  mcp-vector-search install
218
325
 
219
326
  # Install with all MCP integrations
@@ -227,7 +334,6 @@ mcp-vector-search install --no-auto-index
227
334
 
228
335
  # Platform-specific MCP integration
229
336
  mcp-vector-search install claude-code # Project-scoped
230
- mcp-vector-search install claude-desktop # Global
231
337
  mcp-vector-search install cursor # Global
232
338
  mcp-vector-search install windsurf # Global
233
339
  mcp-vector-search install vscode # Global
@@ -236,7 +342,11 @@ mcp-vector-search install vscode # Global
236
342
  mcp-vector-search install list
237
343
  ```
238
344
 
239
- #### `uninstall` - Remove MCP Integrations (v0.13.0)
345
+ **When to use:**
346
+ - Use `install` when you need fine-grained control over extensions, models, or MCP platforms
347
+ - Use `setup` for quick, zero-config onboarding (recommended)
348
+
349
+ #### `uninstall` - Remove MCP Integrations
240
350
  ```bash
241
351
  # Remove specific platform
242
352
  mcp-vector-search uninstall claude-code
@@ -256,7 +366,7 @@ mcp-vector-search remove claude-code
256
366
 
257
367
  #### `init` - Initialize Project (Simple)
258
368
  ```bash
259
- # Basic initialization
369
+ # Basic initialization (no indexing or MCP)
260
370
  mcp-vector-search init
261
371
 
262
372
  # Custom configuration
@@ -266,6 +376,8 @@ mcp-vector-search init --extensions .py,.js,.ts --embedding-model sentence-trans
266
376
  mcp-vector-search init --force
267
377
  ```
268
378
 
379
+ **Note**: For most users, use `setup` instead of `init`. The `init` command is for advanced users who want manual control.
380
+
269
381
  #### `index` - Index Codebase
270
382
  ```bash
271
383
  # Index all files
@@ -541,22 +653,20 @@ We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) f
541
653
  git clone https://github.com/bobmatnyc/mcp-vector-search.git
542
654
  cd mcp-vector-search
543
655
 
544
- # Install dependencies with UV
545
- uv sync
546
-
547
- # Install in development mode
548
- uv pip install -e .
656
+ # Install development environment (includes dependencies + editable install)
657
+ make dev
549
658
 
550
659
  # Test CLI from source (recommended during development)
551
660
  ./dev-mcp version # Shows [DEV] indicator
552
661
  ./dev-mcp search "test" # No reinstall needed after code changes
553
662
 
554
- # Run tests
555
- uv run pytest
663
+ # Run tests and quality checks
664
+ make test-unit # Run unit tests
665
+ make quality # Run linting and type checking
666
+ make fix # Auto-fix formatting issues
556
667
 
557
- # Run linting
558
- uv run ruff check
559
- uv run mypy src/
668
+ # View all available targets
669
+ make help
560
670
  ```
561
671
 
562
672
  For detailed development workflow and `dev-mcp` usage, see the [Development](#-development) section below.
@@ -628,16 +738,19 @@ Please [open an issue](https://github.com/bobmatnyc/mcp-vector-search/issues) or
628
738
  **Stage A: Local Development & Testing**
629
739
  ```bash
630
740
  # Setup development environment
631
- uv sync && uv pip install -e .
741
+ make dev
632
742
 
633
743
  # Run development tests
634
- ./scripts/dev-test.sh
744
+ make test-unit
635
745
 
636
746
  # Run CLI from source (recommended during development)
637
747
  ./dev-mcp version # Visual [DEV] indicator
638
748
  ./dev-mcp status # Any command works
639
749
  ./dev-mcp search "auth" # Immediate feedback on changes
640
750
 
751
+ # Run quality checks
752
+ make quality
753
+
641
754
  # Alternative: use uv run directly
642
755
  uv run mcp-vector-search version
643
756
  ```
@@ -719,19 +832,37 @@ See [DEVELOPMENT.md](DEVELOPMENT.md) for detailed development instructions.
719
832
 
720
833
  ## 📚 Documentation
721
834
 
722
- For comprehensive documentation, see **[CLAUDE.md](CLAUDE.md)** - the main documentation index.
723
-
724
- ### Quick Links
725
- - **[Configuration Guide](docs/CONFIGURATION.md)** - Comprehensive configuration reference
726
- - **[Installation & Deployment](docs/DEPLOY.md)** - Setup and deployment guide
727
- - **[CLI Features](docs/CLI_FEATURES.md)** - Advanced CLI features and usage
728
- - **[Project Structure](docs/STRUCTURE.md)** - Architecture and file organization
729
- - **[Contributing Guidelines](docs/developer/CONTRIBUTING.md)** - How to contribute
730
- - **[API Reference](docs/developer/API.md)** - Internal API documentation
731
- - **[Testing Guide](docs/developer/TESTING.md)** - Testing strategies
732
- - **[Code Quality](docs/developer/LINTING.md)** - Linting and formatting
733
- - **[Versioning](docs/VERSIONING.md)** - Version management
734
- - **[Releases](docs/RELEASES.md)** - Release process
835
+ For comprehensive documentation, see **[docs/index.md](docs/index.md)** - the complete documentation hub.
836
+
837
+ ### Getting Started
838
+ - **[Installation Guide](docs/getting-started/installation.md)** - Complete installation instructions
839
+ - **[First Steps](docs/getting-started/first-steps.md)** - Quick start tutorial
840
+ - **[Configuration](docs/getting-started/configuration.md)** - Basic configuration
841
+
842
+ ### User Guides
843
+ - **[Searching Guide](docs/guides/searching.md)** - Master semantic code search
844
+ - **[Indexing Guide](docs/guides/indexing.md)** - Indexing strategies and optimization
845
+ - **[CLI Usage](docs/guides/cli-usage.md)** - Advanced CLI features
846
+ - **[MCP Integration](docs/guides/mcp-integration.md)** - AI tool integration
847
+ - **[File Watching](docs/guides/file-watching.md)** - Real-time index updates
848
+
849
+ ### Reference
850
+ - **[CLI Commands](docs/reference/cli-commands.md)** - Complete command reference
851
+ - **[Configuration Options](docs/reference/configuration-options.md)** - All configuration settings
852
+ - **[Features](docs/reference/features.md)** - Feature overview
853
+ - **[Architecture](docs/reference/architecture.md)** - System architecture
854
+
855
+ ### Development
856
+ - **[Contributing](docs/development/contributing.md)** - How to contribute
857
+ - **[Testing](docs/development/testing.md)** - Testing guide
858
+ - **[Code Quality](docs/development/code-quality.md)** - Linting and formatting
859
+ - **[API Reference](docs/development/api.md)** - Internal API docs
860
+ - **[Deployment](docs/deployment/README.md)** - Release and deployment guide
861
+
862
+ ### Advanced
863
+ - **[Troubleshooting](docs/advanced/troubleshooting.md)** - Common issues and solutions
864
+ - **[Performance](docs/architecture/performance.md)** - Performance optimization
865
+ - **[Extending](docs/advanced/extending.md)** - Adding new features
735
866
 
736
867
  ## 🤝 Contributing
737
868
 
@@ -0,0 +1,120 @@
1
+ mcp_vector_search/__init__.py,sha256=3nT9AQqf8V1olpwMiiuXywwi-Jd8XpufJ05WeLLe5gM,298
2
+ mcp_vector_search/py.typed,sha256=lCKeV9Qcn9sGtbRsgg-LJO2ZwWRuknnnlmomq3bJFH0,43
3
+ mcp_vector_search/analysis/__init__.py,sha256=_j6MByWydA1yQqvkRhIRdxCyMfOkOx4hqDi56eUrKis,3153
4
+ mcp_vector_search/analysis/debt.py,sha256=MWSLI8iuhn3KKif8nA4YdGC2wd-zlXfIdDxTljBhbHM,18549
5
+ mcp_vector_search/analysis/interpretation.py,sha256=jvHzDki2jhIvn-J-qoWDnEL-fgxdh7CpZ63lHcp_qcU,23832
6
+ mcp_vector_search/analysis/metrics.py,sha256=PKBRiNPYzZ5yScek6LagIJ--8NbGi3S6B3NHcmg_y7o,14685
7
+ mcp_vector_search/analysis/trends.py,sha256=LGHvjVtq9j_vYxj4vWB__29wLas2fp5w61rSmRVQnBw,9844
8
+ mcp_vector_search/analysis/baseline/__init__.py,sha256=Bx-891xELSopNTN_BrS7e2kXxwBLCqAG-VvDs9sHgDM,2422
9
+ mcp_vector_search/analysis/baseline/comparator.py,sha256=U0v__4PtMXVqjVFRzYgsMJwGIuqt29OMCZd8KP7QeS0,16034
10
+ mcp_vector_search/analysis/baseline/manager.py,sha256=z6124QaCcq67z6J0q5__LaMK3Ri4Z5rK49nIQmEQzeE,21470
11
+ mcp_vector_search/analysis/collectors/__init__.py,sha256=ZtxmyI4TevGsOu01ri_QnlW6Dhm_9RF2UBaJw76erl4,1896
12
+ mcp_vector_search/analysis/collectors/base.py,sha256=Eda8z8rmgFqMlmXl-cfgilG_YElV0vqlRb56YK7bJeI,5465
13
+ mcp_vector_search/analysis/collectors/cohesion.py,sha256=jynjJWjRw2ADW8LMYpenuvkU5puqfdZAzxEheNyib20,15069
14
+ mcp_vector_search/analysis/collectors/complexity.py,sha256=sEPy9v91KtOERc46jN7hGFoyj_5KrZxYVG63qS9ue20,25332
15
+ mcp_vector_search/analysis/collectors/coupling.py,sha256=PuKEQcUVg5MpvZrM-MmQkcgnUOhYaya0R8S_yQyFHO4,38955
16
+ mcp_vector_search/analysis/collectors/halstead.py,sha256=9Sk33ftAtirHzwi6AKaG6CxXqkfchljJksX-Ds21mbA,14207
17
+ mcp_vector_search/analysis/collectors/smells.py,sha256=OEhB_Ub5viU_kbOm3rVuIFQDDHH2UULkHJXndl1zXjg,12092
18
+ mcp_vector_search/analysis/reporters/__init__.py,sha256=T4tsBIzljXweZr7M_IGfayrcoooKOwz5hgDLwKwUlxE,246
19
+ mcp_vector_search/analysis/reporters/console.py,sha256=4yiHGmP9eKvMZ9_NszSo8N-T-22e2U2IzNT48YaLxR0,24627
20
+ mcp_vector_search/analysis/reporters/markdown.py,sha256=lR9rd-oU9OKg7M5WWWMXECecLUgEJT1TeKVB86DSxec,17721
21
+ mcp_vector_search/analysis/reporters/sarif.py,sha256=A3ic5CPid-jHDvjFDA3P1_ZUBK4oKdDo-ByFIJ-2KlE,14101
22
+ mcp_vector_search/analysis/storage/__init__.py,sha256=pbuSH9Ayw_BSUqbhPM1ciyAr6aXKJiMwt7YYBBz7L3A,2790
23
+ mcp_vector_search/analysis/storage/metrics_store.py,sha256=21RhgVH1hSOhpcepPXAnX-jrIoNPn8IRuGfJLAN_HAc,26380
24
+ mcp_vector_search/analysis/storage/schema.py,sha256=tQy6uBnmKDPm07Mp8X5ybilevazjaHQXmnRzwkQWPX4,8419
25
+ mcp_vector_search/analysis/storage/trend_tracker.py,sha256=3jHvgEsADUPqzMGhHb2_Ss16VndnRzP4Ia4kz7EQ9YU,21156
26
+ mcp_vector_search/analysis/visualizer/__init__.py,sha256=NxiawNHoZFGUodmstnFY8JL4mm1DpgM47mjHA3sZDo8,2367
27
+ mcp_vector_search/analysis/visualizer/d3_data.py,sha256=sjnz5GE--4nligwoKALZpodsjmsiJYYkM8e5sSTHa4A,16579
28
+ mcp_vector_search/analysis/visualizer/exporter.py,sha256=ZQDynTkyMdLMp2jWjZJ1Jk0BkWqGLwmaP7f597GqAPA,16901
29
+ mcp_vector_search/analysis/visualizer/html_report.py,sha256=FxIoJ8sJkh6Qh1n6EPLw7NTLyzDRbTPFh8ZwmzLTrZQ,92041
30
+ mcp_vector_search/analysis/visualizer/schemas.py,sha256=WhCwQCyD-t5Qan7Iz10WNj2smH6IW7RwbG7EgcdiE3A,20388
31
+ mcp_vector_search/cli/__init__.py,sha256=TNB7CaOASz8u3yHWLbNmo8-GtHF0qwUjVKWAuNphKgo,40
32
+ mcp_vector_search/cli/didyoumean.py,sha256=y6jJOPQQoLJ__mRPNoVXB5mRDij3fMsy8hDxF-M7lG8,17139
33
+ mcp_vector_search/cli/export.py,sha256=iluxuRT2KELdKlQeDAlVkteiel4GGrng153UAw9H0as,10804
34
+ mcp_vector_search/cli/history.py,sha256=6wRrSfxpUe9hJXuaEeVxOVkFlcpqkIiGfwzDgd5N6c8,9323
35
+ mcp_vector_search/cli/interactive.py,sha256=T7P4dAdvbglznzQYgiePv5YNyOx9FeE57Y3OKYnnbYE,12744
36
+ mcp_vector_search/cli/main.py,sha256=z7CX_fz8SSeglt7EY5lPaXL_zYBq3CTknVC0S9XaaJo,16317
37
+ mcp_vector_search/cli/output.py,sha256=vaWTIjd3SZuO5AbyfS2nnrHTOP17wWcgbg_v1oOTpOM,18196
38
+ mcp_vector_search/cli/suggestions.py,sha256=h-UaxoLcHmFbhZSm0WG7nKJXAIRIqhv7aGsXijp7vA8,13273
39
+ mcp_vector_search/cli/commands/__init__.py,sha256=vQls-YKZ54YEwmf7g1dL0T2SS9D4pdQljXzsUChG_V4,42
40
+ mcp_vector_search/cli/commands/analyze.py,sha256=SiDVxn_m1AslGy4xhQI_a6gvOgDY6GSRhdQEEF7LPdM,39181
41
+ mcp_vector_search/cli/commands/auto_index.py,sha256=imVVbxWRlA128NPdK9BetNNl3ELrsdq-hqcsLqyAmoM,12712
42
+ mcp_vector_search/cli/commands/chat.py,sha256=so6sqtSbco15XjA5iPD7RLn_N7McGV426g7mHfp0U6A,51657
43
+ mcp_vector_search/cli/commands/config.py,sha256=y2rCX6108cJj8osISeroGRukkyWZdoSz0Hhdz8ehK4E,12862
44
+ mcp_vector_search/cli/commands/demo.py,sha256=MVfEkYmA2abRFwAbk-lpa6P14_SLJBHZAuHb9d6d02U,10630
45
+ mcp_vector_search/cli/commands/index.py,sha256=eoFAOWZHSnukZcWhrETSF2CYWvsBjwwsRjYkuDtNeLw,44709
46
+ mcp_vector_search/cli/commands/index_background.py,sha256=8gEPO7kFRaGZ7try47nVq040M-qxgc3TEZKaftheu54,16612
47
+ mcp_vector_search/cli/commands/init.py,sha256=VLGX1BXy9U0aFOjUR5Ao_nsRGIA6t5hGvM6zHvTLjtY,23809
48
+ mcp_vector_search/cli/commands/install.py,sha256=dd0LqL-yE6ZIxJ0HIwwZ7nGto_43jhYKbnLbt-IOgHc,32535
49
+ mcp_vector_search/cli/commands/install_old.py,sha256=K3Yo8L2Bti6EYaRvojz5Y-RdT4ABlN9-4--EKOs1YxI,24669
50
+ mcp_vector_search/cli/commands/mcp.py,sha256=mAC-8pP0PQxnmUuhStndgZBS444JmjunFHhhRlUwLMc,41240
51
+ mcp_vector_search/cli/commands/reset.py,sha256=Ab0u6G1g_cvSJ4mltVrUPooKJbRqEa4uX57-CNa9IZM,15229
52
+ mcp_vector_search/cli/commands/search.py,sha256=8wotCWJxW7Dram2p1KmGxnxUxWbv-WvKJvlAaNe1MmM,33502
53
+ mcp_vector_search/cli/commands/setup.py,sha256=Ct_MncdazryamK-Gef2UT-Qs1HZgiPnXeO9epNdEisk,42568
54
+ mcp_vector_search/cli/commands/status.py,sha256=v8oLt_iwgpaUakHbRqz0hklx7M1RkxO0b1AX5AdQFU0,30867
55
+ mcp_vector_search/cli/commands/uninstall.py,sha256=SjfViJYm0N4N955Ya3xGdu7eFfK7CWuJcw0AwZqwpRQ,13265
56
+ mcp_vector_search/cli/commands/watch.py,sha256=bwR9Xaa7TaLMCcwRDA3WzbsInI2UYCp0eVg3TnCiyaQ,8902
57
+ mcp_vector_search/cli/commands/visualize/__init__.py,sha256=eh2s2nQwptY__dy5P5oX4HznrGzLHI2wvk0WJrRyzgI,1107
58
+ mcp_vector_search/cli/commands/visualize/cli.py,sha256=m_a6EYdMB0N8lG3kG7uyAZehkXh-ZGfN8t-7DbX96QE,9953
59
+ mcp_vector_search/cli/commands/visualize/graph_builder.py,sha256=_dUUHz7TzVmTa9xyLFsUkGocsEca4i5lxVIWi8vTlY8,23011
60
+ mcp_vector_search/cli/commands/visualize/layout_engine.py,sha256=jTQnZNI42DrJfiLr1MXC3Dq0eMgInz0U1xOLBa4maWA,15973
61
+ mcp_vector_search/cli/commands/visualize/server.py,sha256=L9fgvTp-_oZh_k3QCP3lU_eryCXFahClkiLpXMaShwI,21745
62
+ mcp_vector_search/cli/commands/visualize/state_manager.py,sha256=f91cmdXigh0f8POdGYfBpeUfN0aRsdRRZwNxaZAr3y4,15069
63
+ mcp_vector_search/cli/commands/visualize/exporters/__init__.py,sha256=0bFmy9SRV7xlYZRtRY_VyYcoxR-0a94N9Qspd47xXFc,278
64
+ mcp_vector_search/cli/commands/visualize/exporters/html_exporter.py,sha256=wa4TufaTCGqFJFghXds1wXXLbgEF3vdAzfJbKfRFCBA,799
65
+ mcp_vector_search/cli/commands/visualize/exporters/json_exporter.py,sha256=Dr7yoz_mMndNu6RCiFLO_hJ7lgssAZYlQkV_nGb3vx8,1040
66
+ mcp_vector_search/cli/commands/visualize/templates/__init__.py,sha256=yZqjGO77JlcMVdbnO0t5Sli84Mp5xfJPw9SS_4JcO_8,389
67
+ mcp_vector_search/cli/commands/visualize/templates/base.py,sha256=wRnbOoe8mEFHBKBSVSU-AA_lnWwFwSGDBClJUPIZrwo,10056
68
+ mcp_vector_search/cli/commands/visualize/templates/scripts.py,sha256=M22BRCu1l4j9ezpTml_l8YCp25Y-Vqum3PUe6KU5vH8,170731
69
+ mcp_vector_search/cli/commands/visualize/templates/styles.py,sha256=AVw_xpaD6C-sEWcuLPqXmq5s3wEKD_DtR6coDaydwUo,65623
70
+ mcp_vector_search/config/__init__.py,sha256=GWmUIAIf2yVmUSqPqzTA47mlMeWCXmYwmyECSa8Lq14,208
71
+ mcp_vector_search/config/constants.py,sha256=afXR6SvLLd8QYY4MG4s1vq-hCJiQsE5PhnE-XG9lvb4,1092
72
+ mcp_vector_search/config/default_thresholds.yaml,sha256=sF9BVm1JvooqBS_MaL2HMxSqpJYqjwDqXjQAedxKx-M,1439
73
+ mcp_vector_search/config/defaults.py,sha256=SkPWFpU6BIYbGjyW9WtZ-tsBy9KSGZKkti-EJc2O-8E,5325
74
+ mcp_vector_search/config/settings.py,sha256=D1KMwpBOc-lbuUDy4Q-dvPHp63YAHGqAWipiCVb4xMA,5112
75
+ mcp_vector_search/config/thresholds.py,sha256=A78use0Kk5InNhptrQuFO-7BrHf-gMZaIWPtcYeyDB8,9320
76
+ mcp_vector_search/core/__init__.py,sha256=JZU12AYO1OJsaqPm6E8qnOJXaRZhgYFVQAQW_V38GBw,317
77
+ mcp_vector_search/core/auto_indexer.py,sha256=E6_6gOcczG6AIpm9TwpZv_rUR4Eif_zIkhEvD5VFm4Y,10315
78
+ mcp_vector_search/core/boilerplate.py,sha256=kyA1Cf79aXgCGWPaxeqoE6cKI1m7-Q4ousmZBMvOTW8,5395
79
+ mcp_vector_search/core/config_utils.py,sha256=qWUvv-a7MNiSQvPqt6WMfeZQv_agsaLIyVVVWZCNbpQ,12056
80
+ mcp_vector_search/core/connection_pool.py,sha256=Ls6zenjS6lGNiQvaPtpVEB4g7J-Yt2b_bM89FiS_io4,12668
81
+ mcp_vector_search/core/database.py,sha256=Aoi7LUvwArRNz1MtDg4v9f26bqTSYY3SPr_PGVNB9pE,61220
82
+ mcp_vector_search/core/directory_index.py,sha256=kCHyltX0b3ZgAm21BSBU_NI_DlyIJ9xq7TrnkFmCmb4,11207
83
+ mcp_vector_search/core/embeddings.py,sha256=ooTEF8GtI9zi_g3bFjFY3fBOiyBlU24d8hqbPN7YWPE,11498
84
+ mcp_vector_search/core/exceptions.py,sha256=1PSbuJcsZXupSYbC7piG8zmHzqAeJstvZVTelxONK2k,1891
85
+ mcp_vector_search/core/factory.py,sha256=0ZfjBUq2XvnU2lhFdNzAk1r25f7V0Y28qDmvD0jTjj8,10359
86
+ mcp_vector_search/core/git.py,sha256=_JU4w7VinlAQfIkb6MP20__iwGr7ceEEjCf9HemN8tQ,12821
87
+ mcp_vector_search/core/git_hooks.py,sha256=BUfTU1hky6zdDgtofa1djFwa7g-S1_bxekO4OvPaY8s,10906
88
+ mcp_vector_search/core/indexer.py,sha256=7mbMsUymZ92LbscxOpQzQO3tE24m3gmHztAV7cs_siI,61109
89
+ mcp_vector_search/core/llm_client.py,sha256=5m7B19XLkjXb-DwwDKmTXmJ0AOJ2Py_ZfDVHnOhMTfU,27245
90
+ mcp_vector_search/core/models.py,sha256=tkieEDcDLOn37FIAACSfGc2cHJQw8StZZ69aEJ4zk1U,15066
91
+ mcp_vector_search/core/project.py,sha256=87Cgxm8P3Q2ocqJDJwgJaqrdbzj-6LvM5pKQJTvXfqk,11601
92
+ mcp_vector_search/core/relationships.py,sha256=5bS9Is7-7tn8cCp8jYeZ7MTY9YWB96P-2ICCqZJWAVw,16522
93
+ mcp_vector_search/core/scheduler.py,sha256=msDatz1nFJLg4An99TX6yfWEHtXtl0FiWE1m-RBWTYY,11859
94
+ mcp_vector_search/core/search.py,sha256=MiWlMWMAB4o_S52o3Sudrsa2b_Iyec0UEWOxmJYDCnE,39236
95
+ mcp_vector_search/core/watcher.py,sha256=-DFRCnuUfcqcTrkZPQqfJSvxKAxnpt-axgEj1V-B0O4,10862
96
+ mcp_vector_search/mcp/__init__.py,sha256=gfKR0QV7Jqvj5y0LMBe9gSghd5_rPsvm_rml0ryQtoY,158
97
+ mcp_vector_search/mcp/__main__.py,sha256=KgwB59HM5pRLe2Aj-fvDFcTp95lyT0wfmS3ENcx9gPc,571
98
+ mcp_vector_search/mcp/server.py,sha256=Pozv2E0Fcx-epcht5BkMvo5zCWyhU0hU5KFbaWDE-t8,62377
99
+ mcp_vector_search/parsers/__init__.py,sha256=jr0Yqz1xMok4lnG7_aXnkZThGuefrlAj8PWVbfeT3QQ,228
100
+ mcp_vector_search/parsers/base.py,sha256=dtezuhVgs9dAWlRYT23GGONyckWzTqkEj7Vcwor8C1k,9341
101
+ mcp_vector_search/parsers/dart.py,sha256=li2JP0vwpSsZnMNq0PweZCD_o-y1jUwubHlSA8nm8KQ,21816
102
+ mcp_vector_search/parsers/html.py,sha256=nzEVDV4oCBp3wpL8vp6WWx5eqiB39agu9E048JkuRJQ,13010
103
+ mcp_vector_search/parsers/javascript.py,sha256=uJMLTbY5NGDSf0817bZ6dQQuQMXLUfIEZzyPuxLxoBY,24337
104
+ mcp_vector_search/parsers/php.py,sha256=1QjnE8SAQF86VQ7pNfn1Pmpg5Dni4M7KCLU7212DkXM,24774
105
+ mcp_vector_search/parsers/python.py,sha256=M8GP03BesOym0irUmcRkN50VsgOt-tpKOT_2J4t3QoY,31183
106
+ mcp_vector_search/parsers/registry.py,sha256=_a5TwQ19xRb8bQUJhybL04PdmIEXhZ0-6687QvZvE_M,6556
107
+ mcp_vector_search/parsers/ruby.py,sha256=xNn_z8txAWL7E1ULcFMiqn5idFhf5GQn8N3x1yE-c2k,23818
108
+ mcp_vector_search/parsers/text.py,sha256=jvMdFspbmrrOR1GSGzf2gvBDCXz1cPN_xemoDK4fUvM,6084
109
+ mcp_vector_search/parsers/utils.py,sha256=10vT-GJSeDUoGSIslz8zq4RyavFiMtizCmcnn9cbQqE,8103
110
+ mcp_vector_search/utils/__init__.py,sha256=A1UUiZnwYZLw3FnYfwEE9ejGWFxfPFq4fur-tQO26oo,971
111
+ mcp_vector_search/utils/gitignore.py,sha256=Ka-ta625mdlVVbWRRb1dBHGiUjeJPhlZB-1Jn7FE9pk,8550
112
+ mcp_vector_search/utils/gitignore_updater.py,sha256=JNi307O0gS0tlc1dSqFfWkIrEqkUKx051-TE7E_Gf70,8454
113
+ mcp_vector_search/utils/monorepo.py,sha256=mlew8cjuIUvtXFAlAJtWZhav5LCLHL2uIef5LEH8aMc,10634
114
+ mcp_vector_search/utils/timing.py,sha256=GuHebwsn6xhEzyR7Mthf1o-dPd_nQhXCsDhsveiRXDE,11365
115
+ mcp_vector_search/utils/version.py,sha256=d7fS-CLemxb8UzZ9j18zH0Y0Ud097ljKKYYOPulnGPE,1138
116
+ mcp_vector_search-1.1.22.dist-info/METADATA,sha256=GwKLvJAMGLsE2BhKoiYk6VgiN7_75OxghdEn9biFdXU,29814
117
+ mcp_vector_search-1.1.22.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
118
+ mcp_vector_search-1.1.22.dist-info/entry_points.txt,sha256=H3Ku3CLmadh89aN8fZ3rxr3w19JQWm_TsYyPErlftB8,146
119
+ mcp_vector_search-1.1.22.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
120
+ mcp_vector_search-1.1.22.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: hatchling 1.28.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,2 +1,3 @@
1
1
  [console_scripts]
2
2
  mcp-vector-search = mcp_vector_search.cli.main:cli_with_suggestions
3
+ mcp-vector-search-mcp = mcp_vector_search.mcp.__main__:main