First off, thank you for considering contributing to FastAPI-MCP!
- Make sure you have Python 3.10+ installed
- Install uv (recommended) or pip
- Fork the repository
- Clone your fork
# Clone your fork
git clone https://github.com/YOUR-USERNAME/fastapi_mcp.git
cd fastapi-mcp
# Add the upstream remote
git remote add upstream https://github.com/tadata-org/fastapi_mcp.git
- Set up the development environment:
# Create a virtual environment with uv (recommended)
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install development dependencies with uv
uv sync --extra dev
# Alternatively, using pip
# python -m venv venv
# source venv/bin/activate # On Windows: venv\Scripts\activate
# pip install -e ".[dev]"
- Fork the repository and set the upstream remote
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Make your changes
- Run type checking (
uv run mypy .
) - Run the tests (
uv run pytest
) - Format your code (
uv run ruff check .
anduv run ruff format .
) - Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request on the project repository
We use the following tools to ensure code quality:
- ruff for linting
- mypy for type checking
Please make sure your code passes all checks before submitting a pull request:
# Using uv
uv run ruff check .
uv run mypy .
# Or directly if tools are installed
ruff check .
mypy .
We use pytest for testing. Please write tests for any new features and ensure all tests pass:
# Using uv
uv run pytest
# Or directly
pytest
- Ensure your code follows the style guidelines of the project
- Update the README.md with details of changes if applicable
- The versioning scheme we use is SemVer
- Include a descriptive commit message
- Your pull request will be merged once it's reviewed and approved
Please note we have a code of conduct, please follow it in all your interactions with the project.
- Be respectful and inclusive
- Be collaborative
- When disagreeing, try to understand why
- A diverse community is a strong community
Don't hesitate to open an issue if you have any questions about contributing to FastAPI-MCP.