Thank you for your interest in contributing! This guide will help you get started with the contribution process.
This project uses uv
for development. Install and documentation is here.
-
Fork and Clone the Repository
git clone https://github.com/j4c0bs/mcp-server-sql-analyzer.git cd mcp-server-sql-analyzer
-
Create a New Branch
git checkout -b feature/your-feature-name
Name your branch with a descriptive prefix like
feat
orfix
. -
Make Your Changes
- Write your code
- Add tests if applicable
- Ensure all tests pass
- Update documentation as needed
-
Code Style and Linting
-
We use
ruff
for linting and formatting -
Run linting:
ruff check .
-
Run formatting:
ruff format .
-
-
Commit Your Changes
git add . git commit -m "Description of your changes"
Write clear, concise commit messages that explain your changes.
-
Push and Create a Pull Request
git push origin feature/your-feature-name
Then go to the repository on GitHub and create a Pull Request from your branch.
- Provide a clear title and description of your changes
- Link any related issues
- Ensure all tests pass
- Make sure your code has been linted and formatted with ruff
- Keep changes focused and atomic
- Maintainers will review your PR
- Address any requested changes
- Once approved, your PR will be merged
If you have any questions, feel free to open an issue for discussion.
Thank you for contributing!