mcp-code-indexer 1.6.3__tar.gz → 1.6.4__tar.gz
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.
- {mcp_code_indexer-1.6.3/src/mcp_code_indexer.egg-info → mcp_code_indexer-1.6.4}/PKG-INFO +4 -3
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/README.md +2 -2
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/pyproject.toml +3 -2
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/setup.py +3 -3
- mcp_code_indexer-1.6.4/src/mcp_code_indexer/__init__.py +39 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4/src/mcp_code_indexer.egg-info}/PKG-INFO +4 -3
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer.egg-info/requires.txt +3 -0
- mcp_code_indexer-1.6.3/src/mcp_code_indexer/__init__.py +0 -16
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/LICENSE +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/MANIFEST.in +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/docs/api-reference.md +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/docs/architecture.md +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/docs/configuration.md +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/docs/contributing.md +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/docs/git-hook-setup.md +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/migrations/001_initial.sql +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/migrations/002_performance_indexes.sql +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/migrations/003_project_overviews.sql +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/requirements.txt +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/setup.cfg +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/__main__.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/data/stop_words_english.txt +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/database/__init__.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/database/database.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/database/models.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/error_handler.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/file_scanner.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/git_hook_handler.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/logging_config.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/main.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/merge_handler.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/middleware/__init__.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/middleware/error_middleware.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/server/__init__.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/server/mcp_server.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/tiktoken_cache/9b5ad71b2ce5302211f9c61530b329a4922fc6a4 +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/token_counter.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/tools/__init__.py +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer.egg-info/SOURCES.txt +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer.egg-info/dependency_links.txt +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer.egg-info/entry_points.txt +0 -0
- {mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-code-indexer
|
3
|
-
Version: 1.6.
|
3
|
+
Version: 1.6.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
|
@@ -37,6 +37,7 @@ Requires-Dist: aiofiles==23.2.0
|
|
37
37
|
Requires-Dist: aiosqlite==0.19.0
|
38
38
|
Requires-Dist: aiohttp>=3.8.0
|
39
39
|
Requires-Dist: tenacity>=8.0.0
|
40
|
+
Requires-Dist: tomli>=1.2.0; python_version < "3.11"
|
40
41
|
Provides-Extra: dev
|
41
42
|
Requires-Dist: pytest>=8.0.0; extra == "dev"
|
42
43
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
@@ -57,8 +58,8 @@ Dynamic: requires-python
|
|
57
58
|
|
58
59
|
# MCP Code Indexer 🚀
|
59
60
|
|
60
|
-
[](https://badge.fury.io/py/mcp-code-indexer)
|
62
|
+
[](https://pypi.org/project/mcp-code-indexer/)
|
62
63
|
[](https://opensource.org/licenses/MIT)
|
63
64
|
|
64
65
|
A production-ready **Model Context Protocol (MCP) server** that revolutionizes how AI agents navigate and understand codebases. Instead of repeatedly scanning files, agents get instant access to intelligent descriptions, semantic search, and context-aware recommendations.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# MCP Code Indexer 🚀
|
2
2
|
|
3
|
-
[](https://badge.fury.io/py/mcp-code-indexer)
|
4
|
+
[](https://pypi.org/project/mcp-code-indexer/)
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
6
6
|
|
7
7
|
A production-ready **Model Context Protocol (MCP) server** that revolutionizes how AI agents navigate and understand codebases. Instead of repeatedly scanning files, agents get instant access to intelligent descriptions, semantic search, and context-aware recommendations.
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "mcp-code-indexer"
|
7
|
-
version = "1.6.
|
7
|
+
version = "1.6.4"
|
8
8
|
description = "MCP server that tracks file descriptions across codebases, enabling AI agents to efficiently navigate and understand code through searchable summaries and token-aware overviews."
|
9
9
|
readme = "README.md"
|
10
10
|
license = {text = "MIT"}
|
@@ -50,7 +50,8 @@ dependencies = [
|
|
50
50
|
"aiofiles==23.2.0",
|
51
51
|
"aiosqlite==0.19.0",
|
52
52
|
"aiohttp>=3.8.0",
|
53
|
-
"tenacity>=8.0.0"
|
53
|
+
"tenacity>=8.0.0",
|
54
|
+
"tomli>=1.2.0; python_version<'3.11'"
|
54
55
|
]
|
55
56
|
|
56
57
|
[project.optional-dependencies]
|
@@ -19,9 +19,9 @@ def get_version():
|
|
19
19
|
with open(this_directory / "pyproject.toml", "rb") as f:
|
20
20
|
data = tomllib.load(f)
|
21
21
|
return data["project"]["version"]
|
22
|
-
except Exception:
|
23
|
-
#
|
24
|
-
|
22
|
+
except Exception as e:
|
23
|
+
# Fail hard if version reading fails
|
24
|
+
raise RuntimeError(f"Could not read version from pyproject.toml: {e}")
|
25
25
|
|
26
26
|
setup(
|
27
27
|
name="mcp-code-indexer",
|
@@ -0,0 +1,39 @@
|
|
1
|
+
"""
|
2
|
+
MCP Code Indexer - Intelligent codebase navigation for AI agents.
|
3
|
+
|
4
|
+
A production-ready Model Context Protocol (MCP) server that provides
|
5
|
+
intelligent codebase navigation through searchable file descriptions,
|
6
|
+
token-aware overviews, and advanced merge capabilities.
|
7
|
+
"""
|
8
|
+
|
9
|
+
def _get_version() -> str:
|
10
|
+
"""Read version from pyproject.toml."""
|
11
|
+
try:
|
12
|
+
from pathlib import Path
|
13
|
+
import sys
|
14
|
+
|
15
|
+
if sys.version_info >= (3, 11):
|
16
|
+
import tomllib
|
17
|
+
else:
|
18
|
+
try:
|
19
|
+
import tomli as tomllib
|
20
|
+
except ImportError:
|
21
|
+
# Fallback if tomli not available
|
22
|
+
return "1.6.3"
|
23
|
+
|
24
|
+
pyproject_path = Path(__file__).parent.parent.parent / "pyproject.toml"
|
25
|
+
with open(pyproject_path, "rb") as f:
|
26
|
+
data = tomllib.load(f)
|
27
|
+
return data["project"]["version"]
|
28
|
+
except Exception:
|
29
|
+
# Return dev version if reading fails - indicates something is wrong
|
30
|
+
return "dev"
|
31
|
+
|
32
|
+
__version__ = _get_version()
|
33
|
+
__author__ = "MCP Code Indexer Contributors"
|
34
|
+
__email__ = ""
|
35
|
+
__license__ = "MIT"
|
36
|
+
|
37
|
+
from .server.mcp_server import MCPCodeIndexServer
|
38
|
+
|
39
|
+
__all__ = ["MCPCodeIndexServer", "__version__"]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-code-indexer
|
3
|
-
Version: 1.6.
|
3
|
+
Version: 1.6.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
|
@@ -37,6 +37,7 @@ Requires-Dist: aiofiles==23.2.0
|
|
37
37
|
Requires-Dist: aiosqlite==0.19.0
|
38
38
|
Requires-Dist: aiohttp>=3.8.0
|
39
39
|
Requires-Dist: tenacity>=8.0.0
|
40
|
+
Requires-Dist: tomli>=1.2.0; python_version < "3.11"
|
40
41
|
Provides-Extra: dev
|
41
42
|
Requires-Dist: pytest>=8.0.0; extra == "dev"
|
42
43
|
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
@@ -57,8 +58,8 @@ Dynamic: requires-python
|
|
57
58
|
|
58
59
|
# MCP Code Indexer 🚀
|
59
60
|
|
60
|
-
[](https://badge.fury.io/py/mcp-code-indexer)
|
62
|
+
[](https://pypi.org/project/mcp-code-indexer/)
|
62
63
|
[](https://opensource.org/licenses/MIT)
|
63
64
|
|
64
65
|
A production-ready **Model Context Protocol (MCP) server** that revolutionizes how AI agents navigate and understand codebases. Instead of repeatedly scanning files, agents get instant access to intelligent descriptions, semantic search, and context-aware recommendations.
|
@@ -1,16 +0,0 @@
|
|
1
|
-
"""
|
2
|
-
MCP Code Indexer - Intelligent codebase navigation for AI agents.
|
3
|
-
|
4
|
-
A production-ready Model Context Protocol (MCP) server that provides
|
5
|
-
intelligent codebase navigation through searchable file descriptions,
|
6
|
-
token-aware overviews, and advanced merge capabilities.
|
7
|
-
"""
|
8
|
-
|
9
|
-
__version__ = "1.6.0"
|
10
|
-
__author__ = "MCP Code Indexer Contributors"
|
11
|
-
__email__ = ""
|
12
|
-
__license__ = "MIT"
|
13
|
-
|
14
|
-
from .server.mcp_server import MCPCodeIndexServer
|
15
|
-
|
16
|
-
__all__ = ["MCPCodeIndexServer", "__version__"]
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/data/stop_words_english.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer/middleware/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer.egg-info/dependency_links.txt
RENAMED
File without changes
|
{mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer.egg-info/entry_points.txt
RENAMED
File without changes
|
{mcp_code_indexer-1.6.3 → mcp_code_indexer-1.6.4}/src/mcp_code_indexer.egg-info/top_level.txt
RENAMED
File without changes
|