Thank you for your interest in contributing to MCP Tavily! This document provides guidelines and instructions for contributing to the project.
mcp-tavily/
├── dist/ # Distribution files
├── src/
│ └── mcp_server_tavily/ # Source code
│ ├── __init__.py # Package initialization and CLI
│ ├── __main__.py # Entry point
│ └── server.py # Server implementation
├── tests/
│ ├── conftest.py # Test fixtures
│ ├── helpers.py # Test helpers
│ ├── test_models.py # Tests for data models
│ ├── test_utils.py # Tests for utility functions
│ ├── test_server_api.py # Tests for server API handlers
│ └── test_integration.py # Integration tests
├── .env.sample # Sample environment variables
├── LICENSE # MIT License
├── pyproject.toml # Project configuration
├── README.md # Project documentation
└── uv.lock # Dependency lock file
-
Clone the repository:
git clone https://github.com/RamXX/mcp-tavily.git cd mcp-tavily
-
Create a virtual environment:
python -m venv .venv source .venv/bin/activate # On Windows: .venv\Scripts\activate
-
Install dependencies:
uv sync
-
Install development dependencies:
uv add --dev pytest pytest-asyncio pytest-mock pytest-cov
-
Install the package in development mode:
uv pip install -e .
-
Set up your Tavily API key: Create a
.env
file in the project root with your Tavily API key:TAVILY_API_KEY=your_api_key_here
The project includes a test suite that verifies the functionality of various components:
# Run all tests
./tests/run_tests.sh
# Run specific test files
python -m pytest tests/test_models.py
python -m pytest tests/test_utils.py
# Run with increased verbosity
python -m pytest -v tests/test_models.py
- Model Tests: Verify the validation and behavior of data models
- Utility Tests: Test formatting and parsing functions
- API Tests: Test server API handlers and error handling
- Integration Tests: Test the complete server behavior
When adding new features, please include appropriate tests:
- For new data models, add tests in
tests/test_models.py
- For utility functions, add tests in
tests/test_utils.py
- For API handlers, add tests in
tests/test_server_api.py
- For integration tests, add tests in
tests/test_integration.py
Please follow these guidelines when contributing:
- Use Black for code formatting
- Follow PEP 8 style guidelines
- Include docstrings for new functions and classes
- Write clear commit messages that explain the "why" behind changes
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature
) - Make your changes
- Run tests to ensure they pass
- Commit your changes with descriptive commit messages
- Push to your feature branch
- Open a Pull Request against the main repository
By contributing to MCP Tavily, you agree that your contributions will be licensed under the project's MIT License.