Conversation
BREAKING CHANGE: Replaced 6 separate PyPI packages with a single
`mamba-mcp` package using optional extras for modular installation.
Directory restructuring:
- Source: packages/*/src/ → src/ (6 modules, all import paths preserved)
- Tests: packages/*/tests/ → tests/{core,client,pg,fs,hana,gitlab}/
- Examples: packages/mamba-mcp-client/examples/ → examples/
- Removed packages/ directory and 6 per-package pyproject.toml files
Package changes:
- Single pyproject.toml with extras: [client], [pg], [fs], [hana], [gitlab], [all]
- Single hatch-vcs version at src/mamba_mcp_core/_version.py
- All 5 sub-module __init__.py files import version from core
- Added `mamba-mcp` CLI alias for the client
- Eliminated UV workspace in favor of flat src layout
Code fixes:
- Upgraded str+Enum to StrEnum in client (OutputFormat, LogLevel, TransportType, MessageDirection)
- Fixed import sorting (first-party reclassification after consolidation)
- Updated 7 test files with corrected conftest import paths
CI/CD:
- ci.yml: uses uv sync --all-extras, matrix tests by suite subdirectory
- release.yml: single uv build instead of 6-package loop
Documentation:
- Updated CLAUDE.md, README.md, CHANGELOG.md, and 4 MkDocs pages
- Preserved per-package READMEs in docs/packages/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
BREAKING CHANGE: Replaced 6 separate PyPI packages with a single
mamba-mcppackage using optional extras for modular installation.Directory restructuring:
Package changes:
mamba-mcpCLI alias for the clientCode fixes:
CI/CD:
Documentation: