Thank you for considering contributing to MCPTools! This document provides guidelines and instructions for contributing to the project.
- Fork the repository
- Clone your fork:
git clone https://github.com/YOUR-USERNAME/mcptools.git
- Create a new branch:
git checkout -b feature/your-feature-name
- No need to pre-install Go - the setup process will automatically install it if needed
- Run
make setup
to set up the development environment (this will check/install Go and set up everything else) - Make your changes
- Test your local changes by running
make build
first, then./bin/mcp [command]
- Run tests using
make test
- Run the linter using
make lint
- Update the README.md with details of changes if needed
- Follow the existing code style and formatting
- Add tests for new features
- Ensure all tests pass and the linter shows no errors
- Update documentation as needed
- Use clear and meaningful commit messages
- Start with a verb in present tense (e.g., "Add feature" not "Added feature")
- Reference issue numbers if applicable
- Follow Go best practices and idioms
- Use meaningful variable and function names
- Add comments for complex logic
- Keep functions focused and small
Feel free to open an issue for any questions or problems you encounter.
By contributing, you agree that your contributions will be licensed under the same terms as the main project.