mcp-code-indexer 1.2.2__py3-none-any.whl → 1.2.4__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.
@@ -6,7 +6,7 @@ intelligent codebase navigation through searchable file descriptions,
6
6
  token-aware overviews, and advanced merge capabilities.
7
7
  """
8
8
 
9
- __version__ = "1.0.5"
9
+ __version__ = "1.2.4"
10
10
  __author__ = "MCP Code Indexer Contributors"
11
11
  __email__ = ""
12
12
  __license__ = "MIT"
@@ -49,7 +49,7 @@ class DatabaseManager:
49
49
  self.db_path.parent.mkdir(parents=True, exist_ok=True)
50
50
 
51
51
  # Apply migrations in order
52
- migrations_dir = Path(__file__).parent.parent.parent / "migrations"
52
+ migrations_dir = Path(__file__).parent.parent.parent.parent / "migrations"
53
53
  migration_files = sorted(migrations_dir.glob("*.sql"))
54
54
 
55
55
  async with aiosqlite.connect(self.db_path) as db:
@@ -252,7 +252,7 @@ class MCPCodeIndexServer:
252
252
  ),
253
253
  types.Tool(
254
254
  name="check_codebase_size",
255
- description="Checks the total token count of a codebase's file structure and descriptions. Returns whether the codebase is 'large' and recommends using search instead of the full overview.",
255
+ description="Checks the total token count of a codebase's file structure and descriptions - if you're in a git repo be sure to run `git rev-parse --abbrev-ref HEAD` to see what branch you're on before running this tool. Returns whether the codebase is 'large' and recommends using search instead of the full overview.",
256
256
  inputSchema={
257
257
  "type": "object",
258
258
  "properties": {
@@ -350,7 +350,7 @@ class MCPCodeIndexServer:
350
350
  ),
351
351
  types.Tool(
352
352
  name="get_codebase_overview",
353
- description="Returns a condensed, interpretive overview of the entire codebase. This is a single comprehensive narrative that captures the architecture, key components, relationships, and design patterns. Unlike get_all_descriptions which lists every file, this provides a holistic view suitable for understanding the codebase's structure and purpose. If no overview exists, returns empty string.",
353
+ description="Returns a condensed, interpretive overview of the entire codebase - if you're in a git repo be sure to run `git rev-parse --abbrev-ref HEAD` to see what branch you're on before running this tool. This is a single comprehensive narrative that captures the architecture, key components, relationships, and design patterns. Unlike get_all_descriptions which lists every file, this provides a holistic view suitable for understanding the codebase's structure and purpose. If no overview exists, returns empty string.",
354
354
  inputSchema={
355
355
  "type": "object",
356
356
  "properties": {
@@ -417,7 +417,7 @@ src/
417
417
  ),
418
418
  types.Tool(
419
419
  name="get_word_frequency",
420
- description="Analyzes all file descriptions to find the most frequently used technical terms. Filters out common English stop words and symbols, returning the top 200 meaningful terms. Useful for understanding the codebase's domain vocabulary and finding all functions/files related to specific concepts.",
420
+ description="Analyzes all file descriptions to find the most frequently used technical terms - if you're in a git repo be sure to run `git rev-parse --abbrev-ref HEAD` to see what branch you're on before running this tool. Filters out common English stop words and symbols, returning the top 200 meaningful terms. Useful for understanding the codebase's domain vocabulary and finding all functions/files related to specific concepts.",
421
421
  inputSchema={
422
422
  "type": "object",
423
423
  "properties": {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-code-indexer
3
- Version: 1.2.2
3
+ Version: 1.2.4
4
4
  Summary: MCP server that tracks file descriptions across codebases, enabling AI agents to efficiently navigate and understand code through searchable summaries and token-aware overviews.
5
5
  Author: MCP Code Indexer Contributors
6
6
  Maintainer: MCP Code Indexer Contributors
@@ -1,4 +1,4 @@
1
- mcp_code_indexer/__init__.py,sha256=PUkiM7VGRk7n2B_Ma0fzZWC0wmHCjyE15wxsvU9I54E,473
1
+ mcp_code_indexer/__init__.py,sha256=nzaMakyL2NPaYMFqrYZng7cG08ZqObqJxafwIRdxE_k,473
2
2
  mcp_code_indexer/__main__.py,sha256=4Edinoe0ug43hobuLYcjTmGp2YJnlFYN4_8iKvUBJ0Q,213
3
3
  mcp_code_indexer/error_handler.py,sha256=cNSUFFrGBMLDv4qa78c7495L1wSl_dXCRbzCJOidx-Q,11590
4
4
  mcp_code_indexer/file_scanner.py,sha256=ctXeZMROgDThEtjzsANTK9TbK-fhTScMBd4iyuleBT4,11734
@@ -8,17 +8,17 @@ mcp_code_indexer/merge_handler.py,sha256=lJR8eVq2qSrF6MW9mR3Fy8UzrNAaQ7RsI2FMNXn
8
8
  mcp_code_indexer/token_counter.py,sha256=WrifOkbF99nWWHlRlhCHAB2KN7qr83GOHl7apE-hJcE,8460
9
9
  mcp_code_indexer/data/stop_words_english.txt,sha256=7Zdd9ameVgA6tN_zuXROvHXD4hkWeELVywPhb7FJEkw,6343
10
10
  mcp_code_indexer/database/__init__.py,sha256=aPq_aaRp0aSwOBIq9GkuMNjmLxA411zg2vhdrAuHm-w,38
11
- mcp_code_indexer/database/database.py,sha256=ziePr0QHkPwv-plLRdySB8ei8fcXc3SOIgC0uRi47KI,26600
11
+ mcp_code_indexer/database/database.py,sha256=BRdV6XOn4yySHviAyNKG1faV_rzvsajU0ZppRGcvakg,26607
12
12
  mcp_code_indexer/database/models.py,sha256=_vCmJnPXZSiInRzyvs4c7QUWuNNW8qsOoDlGX8J-Gnk,7124
13
13
  mcp_code_indexer/middleware/__init__.py,sha256=p-mP0pMsfiU2yajCPvokCUxUEkh_lu4XJP1LyyMW2ug,220
14
14
  mcp_code_indexer/middleware/error_middleware.py,sha256=v6jaHmPxf3qerYdb85X1tHIXLxgcbybpitKVakFLQTA,10109
15
15
  mcp_code_indexer/server/__init__.py,sha256=16xMcuriUOBlawRqWNBk6niwrvtv_JD5xvI36X1Vsmk,41
16
- mcp_code_indexer/server/mcp_server.py,sha256=tYL-VJXJO-H41uyz6lDdZ6e21-sk__QkWJWFhbHSd1o,60284
16
+ mcp_code_indexer/server/mcp_server.py,sha256=rMWT9cY2wJoKL-xw25CdwYiurmsa8BNVtYA_mVxbkyk,60671
17
17
  mcp_code_indexer/tiktoken_cache/9b5ad71b2ce5302211f9c61530b329a4922fc6a4,sha256=Ijkht27pm96ZW3_3OFE-7xAPtR0YyTWXoRO8_-hlsqc,1681126
18
18
  mcp_code_indexer/tools/__init__.py,sha256=m01mxML2UdD7y5rih_XNhNSCMzQTz7WQ_T1TeOcYlnE,49
19
- mcp_code_indexer-1.2.2.dist-info/licenses/LICENSE,sha256=JN9dyPPgYwH9C-UjYM7FLNZjQ6BF7kAzpF3_4PwY4rY,1086
20
- mcp_code_indexer-1.2.2.dist-info/METADATA,sha256=04WllaK3-cQgGdEmp14AiV8_0FwPAHefgY7ZHtuloqM,12205
21
- mcp_code_indexer-1.2.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
- mcp_code_indexer-1.2.2.dist-info/entry_points.txt,sha256=8HqWOw1Is7jOP1bvIgaSwouvT9z_Boe-9hd4NzyJOhY,68
23
- mcp_code_indexer-1.2.2.dist-info/top_level.txt,sha256=yKYCM-gMGt-cnupGfAhnZaoEsROLB6DQ1KFUuyKx4rw,17
24
- mcp_code_indexer-1.2.2.dist-info/RECORD,,
19
+ mcp_code_indexer-1.2.4.dist-info/licenses/LICENSE,sha256=JN9dyPPgYwH9C-UjYM7FLNZjQ6BF7kAzpF3_4PwY4rY,1086
20
+ mcp_code_indexer-1.2.4.dist-info/METADATA,sha256=d5gf3xqSWtKksc-p6DJwLE5lxDBjoiAsHOFFVuNbijc,12205
21
+ mcp_code_indexer-1.2.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
+ mcp_code_indexer-1.2.4.dist-info/entry_points.txt,sha256=8HqWOw1Is7jOP1bvIgaSwouvT9z_Boe-9hd4NzyJOhY,68
23
+ mcp_code_indexer-1.2.4.dist-info/top_level.txt,sha256=yKYCM-gMGt-cnupGfAhnZaoEsROLB6DQ1KFUuyKx4rw,17
24
+ mcp_code_indexer-1.2.4.dist-info/RECORD,,