Contributing to mcp_use
git clone https://github.com/mcp-use/mcp-use.git cd mcp-use
pip install -e ".[dev]"
pre-commit install
pytest
# Run tests with coverage pytest --cov=mcp_use # Run specific test file pytest tests/test_client.py # Run tests with verbose output pytest -v
npm i -g mintlify
mintlify dev
git checkout -b feature/your-feature-name
git add . git commit -m "Description of your changes"
git push origin feature/your-feature-name
mcp-use/ ├── mcp_use/ # Main package code ├── tests/ # Test files ├── examples/ # Example usage ├── docs/ # Documentation ├── static/ # Static assets └── pyproject.toml # Project configuration
Was this page helpful?