codebase-mcp 0.1.0__tar.gz → 0.1.1__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.
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/PKG-INFO +1 -18
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/README.md +0 -17
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/pyproject.toml +67 -67
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/.gitignore +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/mcp-config-example.json +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/__init__.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/__main__.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/config.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/db.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/exporter.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/handoff.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/indexer.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/models.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/parsers/__init__.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/parsers/base.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/parsers/config_parsers.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/parsers/generic.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/parsers/go.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/parsers/python.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/parsers/rust.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/parsers/typescript.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/parsers/universal.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/server.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/watcher.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/src/codebase_mcp/webui.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/tests/conftest.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/tests/test_call_graph.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/tests/test_db.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/tests/test_exclude.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/tests/test_indexer.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/tests/test_parsers.py +0 -0
- {codebase_mcp-0.1.0 → codebase_mcp-0.1.1}/tests/test_scan.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codebase-mcp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Persistent, portable codebase intelligence MCP server with incremental indexing and decision memory
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: agent,ai,codebase,indexer,mcp,tree-sitter
|
|
@@ -405,20 +405,3 @@ Universal parser (symbols and structure, no call graph):
|
|
|
405
405
|
- Java, Kotlin, Swift, C, C++, C#, Ruby, PHP, Scala, Dart, Lua, Bash, SQL, HTML, CSS, YAML, TOML, JSON, Dockerfile, Makefile, and 30+ more via tree-sitter-language-pack
|
|
406
406
|
|
|
407
407
|
---
|
|
408
|
-
|
|
409
|
-
## Development
|
|
410
|
-
|
|
411
|
-
```bash
|
|
412
|
-
git clone https://github.com/vatsal2025/CodeBase.git
|
|
413
|
-
cd CodeBase
|
|
414
|
-
pip install -e ".[dev]"
|
|
415
|
-
pytest tests/
|
|
416
|
-
```
|
|
417
|
-
|
|
418
|
-
All 147 tests must pass before submitting changes.
|
|
419
|
-
|
|
420
|
-
---
|
|
421
|
-
|
|
422
|
-
## License
|
|
423
|
-
|
|
424
|
-
MIT
|
|
@@ -366,20 +366,3 @@ Universal parser (symbols and structure, no call graph):
|
|
|
366
366
|
- Java, Kotlin, Swift, C, C++, C#, Ruby, PHP, Scala, Dart, Lua, Bash, SQL, HTML, CSS, YAML, TOML, JSON, Dockerfile, Makefile, and 30+ more via tree-sitter-language-pack
|
|
367
367
|
|
|
368
368
|
---
|
|
369
|
-
|
|
370
|
-
## Development
|
|
371
|
-
|
|
372
|
-
```bash
|
|
373
|
-
git clone https://github.com/vatsal2025/CodeBase.git
|
|
374
|
-
cd CodeBase
|
|
375
|
-
pip install -e ".[dev]"
|
|
376
|
-
pytest tests/
|
|
377
|
-
```
|
|
378
|
-
|
|
379
|
-
All 147 tests must pass before submitting changes.
|
|
380
|
-
|
|
381
|
-
---
|
|
382
|
-
|
|
383
|
-
## License
|
|
384
|
-
|
|
385
|
-
MIT
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["hatchling"]
|
|
3
|
-
build-backend = "hatchling.build"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "codebase-mcp"
|
|
7
|
-
version = "0.1.
|
|
8
|
-
description = "Persistent, portable codebase intelligence MCP server with incremental indexing and decision memory"
|
|
9
|
-
readme = "README.md"
|
|
10
|
-
license = { text = "MIT" }
|
|
11
|
-
requires-python = ">=3.11"
|
|
12
|
-
keywords = ["mcp", "codebase", "ai", "agent", "tree-sitter", "indexer"]
|
|
13
|
-
classifiers = [
|
|
14
|
-
"Development Status :: 4 - Beta",
|
|
15
|
-
"Intended Audience :: Developers",
|
|
16
|
-
"License :: OSI Approved :: MIT License",
|
|
17
|
-
"Programming Language :: Python :: 3",
|
|
18
|
-
"Programming Language :: Python :: 3.11",
|
|
19
|
-
"Programming Language :: Python :: 3.12",
|
|
20
|
-
"Programming Language :: Python :: 3.13",
|
|
21
|
-
"Topic :: Software Development :: Libraries",
|
|
22
|
-
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
23
|
-
]
|
|
24
|
-
dependencies = [
|
|
25
|
-
"mcp[cli]>=1.0.0",
|
|
26
|
-
"tree-sitter>=0.23.0",
|
|
27
|
-
"tree-sitter-language-pack>=0.1.0",
|
|
28
|
-
"click>=8.0",
|
|
29
|
-
"rich>=13.0",
|
|
30
|
-
]
|
|
31
|
-
|
|
32
|
-
[project.optional-dependencies]
|
|
33
|
-
# Fallback individual language packages if language-pack is unavailable
|
|
34
|
-
langs = [
|
|
35
|
-
"tree-sitter-python",
|
|
36
|
-
"tree-sitter-javascript",
|
|
37
|
-
"tree-sitter-typescript",
|
|
38
|
-
"tree-sitter-go",
|
|
39
|
-
"tree-sitter-rust",
|
|
40
|
-
]
|
|
41
|
-
# File system watcher for auto-reindex on source changes
|
|
42
|
-
watch = [
|
|
43
|
-
"watchdog>=4.0",
|
|
44
|
-
]
|
|
45
|
-
# YAML parser (optional; falls back to regex if absent)
|
|
46
|
-
yaml = [
|
|
47
|
-
"pyyaml>=6.0",
|
|
48
|
-
]
|
|
49
|
-
# All optional features
|
|
50
|
-
all = [
|
|
51
|
-
"watchdog>=4.0",
|
|
52
|
-
"pyyaml>=6.0",
|
|
53
|
-
]
|
|
54
|
-
dev = [
|
|
55
|
-
"pytest>=7.0",
|
|
56
|
-
"pytest-asyncio>=0.23",
|
|
57
|
-
]
|
|
58
|
-
|
|
59
|
-
[project.scripts]
|
|
60
|
-
codebase-mcp = "codebase_mcp.__main__:cli"
|
|
61
|
-
|
|
62
|
-
[tool.hatch.build.targets.wheel]
|
|
63
|
-
packages = ["src/codebase_mcp"]
|
|
64
|
-
|
|
65
|
-
[tool.pytest.ini_options]
|
|
66
|
-
asyncio_mode = "auto"
|
|
67
|
-
testpaths = ["tests"]
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "codebase-mcp"
|
|
7
|
+
version = "0.1.1"
|
|
8
|
+
description = "Persistent, portable codebase intelligence MCP server with incremental indexing and decision memory"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
|
+
keywords = ["mcp", "codebase", "ai", "agent", "tree-sitter", "indexer"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 4 - Beta",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.11",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Programming Language :: Python :: 3.13",
|
|
21
|
+
"Topic :: Software Development :: Libraries",
|
|
22
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
23
|
+
]
|
|
24
|
+
dependencies = [
|
|
25
|
+
"mcp[cli]>=1.0.0",
|
|
26
|
+
"tree-sitter>=0.23.0",
|
|
27
|
+
"tree-sitter-language-pack>=0.1.0",
|
|
28
|
+
"click>=8.0",
|
|
29
|
+
"rich>=13.0",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[project.optional-dependencies]
|
|
33
|
+
# Fallback individual language packages if language-pack is unavailable
|
|
34
|
+
langs = [
|
|
35
|
+
"tree-sitter-python",
|
|
36
|
+
"tree-sitter-javascript",
|
|
37
|
+
"tree-sitter-typescript",
|
|
38
|
+
"tree-sitter-go",
|
|
39
|
+
"tree-sitter-rust",
|
|
40
|
+
]
|
|
41
|
+
# File system watcher for auto-reindex on source changes
|
|
42
|
+
watch = [
|
|
43
|
+
"watchdog>=4.0",
|
|
44
|
+
]
|
|
45
|
+
# YAML parser (optional; falls back to regex if absent)
|
|
46
|
+
yaml = [
|
|
47
|
+
"pyyaml>=6.0",
|
|
48
|
+
]
|
|
49
|
+
# All optional features
|
|
50
|
+
all = [
|
|
51
|
+
"watchdog>=4.0",
|
|
52
|
+
"pyyaml>=6.0",
|
|
53
|
+
]
|
|
54
|
+
dev = [
|
|
55
|
+
"pytest>=7.0",
|
|
56
|
+
"pytest-asyncio>=0.23",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[project.scripts]
|
|
60
|
+
codebase-mcp = "codebase_mcp.__main__:cli"
|
|
61
|
+
|
|
62
|
+
[tool.hatch.build.targets.wheel]
|
|
63
|
+
packages = ["src/codebase_mcp"]
|
|
64
|
+
|
|
65
|
+
[tool.pytest.ini_options]
|
|
66
|
+
asyncio_mode = "auto"
|
|
67
|
+
testpaths = ["tests"]
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|