Contributions are welcome! Here's how to get started.
git clone https://github.com/ofershap/mcp-server-devutils.git
cd mcp-server-devutils
npm installnpm run build # Build with tsup
npm run typecheck # Type-check with tsc
npm test # Run tests
npm run test:watch # Run tests in watch mode
npm run lint # Lint + format check
npm run format # Auto-format with Prettier- Fork the repo and create a branch from
main - Make your changes
- Add or update tests as needed
- Ensure
npm run lint,npm run typecheck, andnpm testall pass - Open a pull request
This project uses Conventional Commits and semantic-release for automated versioning. Please format your commit messages accordingly:
feat: add new feature(triggers minor release)fix: resolve bug(triggers patch release)feat!: breaking change(triggers major release)