CONTRIBUTING.md•1.36 kB
# Contributing to wizzy-mcp-tmdb
Thank you for your interest in contributing to wizzy-mcp-tmdb! We welcome contributions from everyone.
## Code of Conduct
This project adheres to a code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to the project maintainers.
## How to Contribute
### Reporting Bugs
If you find a bug, please create an issue on GitHub using the bug report template.
### Suggesting Features
If you have an idea for a new feature, please create an issue using the feature request template.
### Pull Requests
1. Fork the repository
2. Create a branch for your changes (`git checkout -b feature/my-feature`)
3. Make your changes
4. Write tests for your changes
5. Ensure all tests pass (`npm test`)
6. Update documentation if necessary
7. Commit your changes (`git commit -am 'Add some feature'`)
8. Push to the branch (`git push origin feature/my-feature`)
9. Create a new Pull Request
### Development Setup
1. Clone the repository: `git clone https://github.com/drakonkat/wizzy-mcp-tmdb.git`
2. Install dependencies: `npm install`
3. Run tests: `npm test`
4. Start development: `npm run dev`
## Style Guidelines
- Follow the existing code style
- Write clear, concise commit messages
- Keep pull requests focused on a single feature or fix
Thank you for contributing!