Thank you for your interest in contributing to MCPB! We welcome contributions from the community.
- Fork the repository
- Clone your fork:
git clone https://github.com/YOUR_USERNAME/mcpb.git - Install dependencies:
yarn - Build the project:
yarn build - Run tests:
yarn test
- Create a new branch for your feature or bugfix:
git checkout -b feature/your-feature-name - Make your changes
- Run linting:
yarn lint - Run tests to ensure everything passes:
yarn test - Commit your changes with a clear, descriptive commit message (all commits must be signed - see Commit Signing)
- Push to your fork and submit a pull request
- TypeScript: All code should be written in TypeScript with proper type definitions
- Linting: Run
yarn lintbefore committing. Useyarn fixto auto-fix formatting issues - Testing: Add tests for new features and bug fixes
- Documentation: Update relevant documentation (README.md, MANIFEST.md, etc.) when adding or changing functionality
All commits must be signed. This helps verify the authenticity of contributions.
To set up commit signing, see GitHub's documentation on commit signature verification.
- Ensure your PR description clearly describes the problem and solution
- Reference any related issues in your PR description
- Make sure all tests pass and linting is clean
- Verify that all commits are signed
- Update documentation as needed
- Wait for review from maintainers
When filing a bug report, please include:
- Clear description of the issue
- Steps to reproduce
- Expected vs actual behavior
- Version information (
mcpb --version) - Relevant logs or error messages
We welcome feature suggestions! Please:
- Clearly describe the feature and use case
- Explain why this would be valuable to users
- Consider if it aligns with the project's goals
We especially welcome:
- Bug fixes
- Documentation improvements
- Test coverage improvements
- New features (please discuss in an issue first for large changes)
- Write unit tests for new functionality
- Ensure existing tests still pass
- Test manually with real MCP bundles when applicable
Feel free to open an issue for questions about contributing or the project in general.
By contributing to MCPB, you agree that your contributions will be licensed under the MIT License.