We love your input! We want to make contributing to Azure DevOps MCP Server as easy and transparent as possible, whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
We use GitHub to host code, to track issues and feature requests, as well as accept pull requests.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Commit your changes (see Commit Message Guidelines below)
- Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request
This project follows Test-Driven Development practices. Each new feature should:
- Begin with a failing test
- Implement the minimal code to make the test pass
- Refactor while keeping tests green
Run unit tests with:
npm run test:unit
Integration tests require a connection to a real Azure DevOps instance. To run them:
-
Ensure your
.env
file is configured with valid Azure DevOps credentials:AZURE_DEVOPS_ORG_URL=https://dev.azure.com/your-organization AZURE_DEVOPS_PAT=your-personal-access-token AZURE_DEVOPS_DEFAULT_PROJECT=your-project-name
-
Run the integration tests:
npm run test:integration
For running tests in CI environments (like GitHub Actions), see CI Environment Setup for instructions on configuring secrets.
We follow the Conventional Commits specification for our commit messages. This leads to more readable messages that are easy to follow when looking through the project history and enables automatic versioning and changelog generation.
Each commit message consists of a header, a body, and a footer. The header has a special format that includes a type, a scope, and a subject:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
The header is mandatory, while the scope of the header is optional.
Must be one of the following:
- feat: A new feature
- fix: A bug fix
- docs: Documentation only changes
- style: Changes that do not affect the meaning of the code (white-space, formatting, etc)
- refactor: A code change that neither fixes a bug nor adds a feature
- perf: A code change that improves performance
- test: Adding missing tests or correcting existing tests
- build: Changes that affect the build system or external dependencies
- ci: Changes to our CI configuration files and scripts
- chore: Other changes that don't modify src or test files
The subject contains a succinct description of the change:
- Use the imperative, present tense: "change" not "changed" nor "changes"
- Don't capitalize the first letter
- No period (.) at the end
The body should include the motivation for the change and contrast this with previous behavior.
The footer should contain any information about Breaking Changes and is also the place to reference GitHub issues that this commit closes.
Breaking Changes should start with the word BREAKING CHANGE:
with a space or two newlines. The rest of the commit message is then used for this.
To simplify the process of creating correctly formatted commit messages, we've set up a tool that will guide you through the process. Simply use:
npm run commit
This will start an interactive prompt that will help you generate a properly formatted commit message.
This project uses Conventional Commits to automate versioning and changelog generation. When contributing, please follow the commit message convention.
To create a commit with the correct format, use:
npm run commit
Our project uses Release Please to automate releases based on Conventional Commits. This approach manages semantic versioning, changelog generation, and GitHub Releases creation.
The workflow is automatically triggered on pushes to the main
branch and follows this process:
- Release Please analyzes commit messages since the last release
- If releasable changes are detected, it creates or updates a Release PR
- When the Release PR is merged, it:
- Updates the version in package.json
- Updates CHANGELOG.md with details of all changes
- Creates a Git tag and GitHub Release
- Publishes the package to npm
- When commits with conventional commit messages are pushed to
main
, Release Please automatically creates a Release PR - The Release PR contains all the changes since the last release with proper version bump based on commit types:
feat:
commits trigger a minor version bumpfix:
commits trigger a patch version bumpfeat!:
orfix!:
commits with breaking changes trigger a major version bump
- Review the Release PR to ensure the changelog and version bump are correct
- Merge the Release PR to trigger the actual release
This automation ensures consistent and well-documented releases that accurately reflect the changes made since the previous release.
By contributing, you agree that your contributions will be licensed under the project's license.