mcp-vector-search 0.7.0__py3-none-any.whl → 0.7.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.

@@ -1,7 +1,7 @@
1
1
  """MCP Vector Search - CLI-first semantic code search with MCP integration."""
2
2
 
3
- __version__ = "0.7.0"
4
- __build__ = "22"
3
+ __version__ = "0.7.2"
4
+ __build__ = "24"
5
5
  __author__ = "Robert Matsuoka"
6
6
  __email__ = "bobmatnyc@gmail.com"
7
7
 
@@ -27,9 +27,14 @@ from ..output import (
27
27
  )
28
28
 
29
29
  # Create init subcommand app
30
- init_app = typer.Typer(help="Initialize project for semantic search")
30
+ init_app = typer.Typer(
31
+ help="Initialize project for semantic search",
32
+ invoke_without_command=True,
33
+ no_args_is_help=False,
34
+ )
31
35
 
32
36
 
37
+ @init_app.callback()
33
38
  def main(
34
39
  ctx: typer.Context,
35
40
  config_file: Path | None = typer.Option(
@@ -126,6 +131,10 @@ def main(
126
131
  [dim]💡 Tip: The command creates .mcp-vector-search/ for project config
127
132
  and .mcp.json for MCP integration.[/dim]
128
133
  """
134
+ # Only run main logic if no subcommand was invoked
135
+ if ctx.invoked_subcommand is not None:
136
+ return
137
+
129
138
  try:
130
139
  # Get project root from context or auto-detect
131
140
  project_root = ctx.obj.get("project_root")
@@ -53,7 +53,6 @@ unfamiliar codebases, finding similar patterns, and integrating with AI tools.
53
53
  from .commands.config import config_app # noqa: E402
54
54
  from .commands.index import index_app # noqa: E402
55
55
  from .commands.init import init_app # noqa: E402
56
- from .commands.init import main as init_main # noqa: E402
57
56
  from .commands.mcp import mcp_app # noqa: E402
58
57
  from .commands.search import search_app, search_main # noqa: E402, F401
59
58
  from .commands.status import main as status_main # noqa: E402
@@ -63,8 +62,8 @@ from .commands.status import main as status_main # noqa: E402
63
62
  # ============================================================================
64
63
 
65
64
  # 1. INIT - Initialize project
66
- app.command("init", help="🔧 Initialize project for semantic search")(init_main)
67
- app.add_typer(init_app, name="init", hidden=True) # Subcommands under init
65
+ # Use Typer group for init to support both direct call and subcommands
66
+ app.add_typer(init_app, name="init", help="🔧 Initialize project for semantic search")
68
67
 
69
68
  # 2. DOCTOR - System health check
70
69
  # (defined below inline)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-vector-search
3
- Version: 0.7.0
3
+ Version: 0.7.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
@@ -63,7 +63,7 @@ Description-Content-Type: text/markdown
63
63
  [![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
64
64
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
65
65
 
66
- > ⚠️ **Alpha Release (v0.6.0)**: This is an early-stage project under active development. Expect breaking changes and rough edges. Feedback and contributions are welcome!
66
+ > ⚠️ **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!
67
67
 
68
68
  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.
69
69
 
@@ -1,18 +1,18 @@
1
- mcp_vector_search/__init__.py,sha256=ho6kD5LiKg5_bjlfaFha23peWF_iCKd3FsCslGTEpsQ,299
1
+ mcp_vector_search/__init__.py,sha256=tIFqRnEICQ-gzROWyTGRNKs2S3M0l39WR3wt9tZuMjA,299
2
2
  mcp_vector_search/py.typed,sha256=lCKeV9Qcn9sGtbRsgg-LJO2ZwWRuknnnlmomq3bJFH0,43
3
3
  mcp_vector_search/cli/__init__.py,sha256=TNB7CaOASz8u3yHWLbNmo8-GtHF0qwUjVKWAuNphKgo,40
4
4
  mcp_vector_search/cli/didyoumean.py,sha256=F_ss-EX4F9RgnMsEhdTwLpyNCah9SqnBZc2tBtzASck,15918
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=iUixejFrC7HO6m-0tzPWu_LXTScvg1Zg_nUZkEpDroQ,14660
8
+ mcp_vector_search/cli/main.py,sha256=ZmTuPFIIqiZzn7Ml04EkzgNveBm4uIXe0kA6t4jysB8,14602
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/index.py,sha256=AWQk_nc5vOW0nxy2yjRre_2uktA4J32D-302IS3dT3M,17862
15
- mcp_vector_search/cli/commands/init.py,sha256=1kK2YmWnMCnAmWjI3Om3d_NE89APisL-vvUFfKcyp2I,26408
15
+ mcp_vector_search/cli/commands/init.py,sha256=D2nuJ4yrcL_6xeAjpcbYBVOO8aruTduy5E3mKlbtA4Y,26610
16
16
  mcp_vector_search/cli/commands/install.py,sha256=phk7Eb7UOU5IsRfJyaDPdOfdUWli9gyA4cHjhgXcNEI,24609
17
17
  mcp_vector_search/cli/commands/mcp.py,sha256=FKZNxYrDc7HfPTFBUEypCv-8atsrHEdbtU6Yfg9QUMA,18569
18
18
  mcp_vector_search/cli/commands/reset.py,sha256=bsIT6zjDf6gsvIkVaRaUClYzlTyNe--8t0NWkBY0ldU,13724
@@ -55,8 +55,8 @@ mcp_vector_search/utils/__init__.py,sha256=Eq6lY-oPMfCt-GpPUbg9QbmTHuQVmTaVDBMU2
55
55
  mcp_vector_search/utils/gitignore.py,sha256=bzie3V5gOGIN7j3FNVLLCx8O_hfZJDUqqAy5T3lT3Ek,7685
56
56
  mcp_vector_search/utils/timing.py,sha256=THC7mfbTYnUpnnDcblgQacYMzbEkfFoIShx6plmhCgg,11285
57
57
  mcp_vector_search/utils/version.py,sha256=d7fS-CLemxb8UzZ9j18zH0Y0Ud097ljKKYYOPulnGPE,1138
58
- mcp_vector_search-0.7.0.dist-info/METADATA,sha256=OPh6-HFukz8BtVkxPBP7yHps009YlISZthb8oHv2YS0,19120
59
- mcp_vector_search-0.7.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
60
- mcp_vector_search-0.7.0.dist-info/entry_points.txt,sha256=y3Ygtc_JiBchNEIL-tPABo7EbzBExGAxwGdkkeP5D2I,86
61
- mcp_vector_search-0.7.0.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
62
- mcp_vector_search-0.7.0.dist-info/RECORD,,
58
+ mcp_vector_search-0.7.2.dist-info/METADATA,sha256=4CqoR4Fb4entY138D68UMZeQBp0Fd7d3fW1Y__sl7aY,19120
59
+ mcp_vector_search-0.7.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
60
+ mcp_vector_search-0.7.2.dist-info/entry_points.txt,sha256=y3Ygtc_JiBchNEIL-tPABo7EbzBExGAxwGdkkeP5D2I,86
61
+ mcp_vector_search-0.7.2.dist-info/licenses/LICENSE,sha256=FqZUgGJH_tZKZLQsMCpXaLawRyLmyFKRVfMwYyEcyTs,1072
62
+ mcp_vector_search-0.7.2.dist-info/RECORD,,