mcp-code-indexer 1.2.0__tar.gz → 1.2.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.
Files changed (39) hide show
  1. {mcp_code_indexer-1.2.0/src/mcp_code_indexer.egg-info → mcp_code_indexer-1.2.1}/PKG-INFO +1 -1
  2. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/pyproject.toml +1 -1
  3. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/setup.py +1 -1
  4. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/server/mcp_server.py +35 -1
  5. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1/src/mcp_code_indexer.egg-info}/PKG-INFO +1 -1
  6. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/LICENSE +0 -0
  7. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/MANIFEST.in +0 -0
  8. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/README.md +0 -0
  9. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/docs/api-reference.md +0 -0
  10. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/docs/architecture.md +0 -0
  11. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/docs/configuration.md +0 -0
  12. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/docs/contributing.md +0 -0
  13. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/migrations/001_initial.sql +0 -0
  14. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/migrations/002_performance_indexes.sql +0 -0
  15. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/migrations/003_project_overviews.sql +0 -0
  16. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/requirements.txt +0 -0
  17. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/setup.cfg +0 -0
  18. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/__init__.py +0 -0
  19. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/__main__.py +0 -0
  20. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/data/stop_words_english.txt +0 -0
  21. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/database/__init__.py +0 -0
  22. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/database/database.py +0 -0
  23. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/database/models.py +0 -0
  24. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/error_handler.py +0 -0
  25. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/file_scanner.py +0 -0
  26. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/logging_config.py +0 -0
  27. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/main.py +0 -0
  28. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/merge_handler.py +0 -0
  29. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/middleware/__init__.py +0 -0
  30. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/middleware/error_middleware.py +0 -0
  31. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/server/__init__.py +0 -0
  32. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/tiktoken_cache/9b5ad71b2ce5302211f9c61530b329a4922fc6a4 +0 -0
  33. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/token_counter.py +0 -0
  34. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer/tools/__init__.py +0 -0
  35. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer.egg-info/SOURCES.txt +0 -0
  36. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer.egg-info/dependency_links.txt +0 -0
  37. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer.egg-info/entry_points.txt +0 -0
  38. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/src/mcp_code_indexer.egg-info/requires.txt +0 -0
  39. {mcp_code_indexer-1.2.0 → mcp_code_indexer-1.2.1}/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.2.0
3
+ Version: 1.2.1
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "mcp-code-indexer"
7
- version = "1.2.0"
7
+ version = "1.2.1"
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"}
@@ -21,7 +21,7 @@ def get_version():
21
21
  return data["project"]["version"]
22
22
  except Exception:
23
23
  # Fallback version if reading fails
24
- return "1.2.0"
24
+ return "1.2.1"
25
25
 
26
26
  setup(
27
27
  name="mcp-code-indexer",
@@ -357,7 +357,41 @@ class MCPCodeIndexServer:
357
357
  ),
358
358
  types.Tool(
359
359
  name="update_codebase_overview",
360
- description="Updates the condensed codebase overview. Create a comprehensive narrative that would help a new developer understand this codebase. Include: (1) A visual directory tree showing the main folders and their purposes, (2) Overall architecture - how components fit together, (3) Core business logic and main workflows, (4) Key technical patterns and conventions used, (5) Important dependencies and integrations, (6) Database schema overview if applicable, (7) API structure if applicable, (8) Testing approach, (9) Build and deployment notes. Write in a clear, structured format with headers and sections. Be thorough but organized - imagine writing a technical onboarding document. The overview should be substantial (think 10-20 pages of text) but well-structured so specific sections can be found easily.",
360
+ description="""Updates the condensed codebase overview. Create a comprehensive narrative that would help a new developer understand this codebase. Include: (1) A visual directory tree showing the main folders and their purposes, (2) Overall architecture - how components fit together, (3) Core business logic and main workflows, (4) Key technical patterns and conventions used, (5) Important dependencies and integrations, (6) Database schema overview if applicable, (7) API structure if applicable, (8) Testing approach, (9) Build and deployment notes. Write in a clear, structured format with headers and sections. Be thorough but organized - imagine writing a technical onboarding document. The overview should be substantial (think 10-20 pages of text) but well-structured so specific sections can be found easily.
361
+
362
+ Example Structure:
363
+
364
+ ````
365
+ ## Directory Structure
366
+ ```
367
+ src/
368
+ ├── api/ # REST API endpoints and middleware
369
+ ├── models/ # Database models and business logic
370
+ ├── services/ # External service integrations
371
+ ├── utils/ # Shared utilities and helpers
372
+ └── tests/ # Test suites
373
+ ```
374
+
375
+ ## Architecture Overview
376
+ [Describe how components interact, data flow, key design decisions]
377
+
378
+ ## Core Components
379
+ ### API Layer
380
+ [Details about API structure, authentication, routing]
381
+
382
+ ### Data Model
383
+ [Key entities, relationships, database design]
384
+
385
+ ## Key Workflows
386
+ 1. User Authentication Flow
387
+ [Step-by-step description]
388
+ 2. Data Processing Pipeline
389
+ [How data moves through the system]
390
+
391
+ [Continue with other sections...]"
392
+ ````
393
+
394
+ """,
361
395
  inputSchema={
362
396
  "type": "object",
363
397
  "properties": {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-code-indexer
3
- Version: 1.2.0
3
+ Version: 1.2.1
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