This directory contains example .env
files for different authentication methods supported by the Azure DevOps MCP Server.
- pat-authentication.env - Example configuration for Personal Access Token (PAT) authentication
- azure-identity-authentication.env - Example configuration for Azure Identity (DefaultAzureCredential) authentication
- azure-cli-authentication.env - Example configuration for Azure CLI authentication
- Choose the authentication method that best suits your needs
- Copy the corresponding example file to the root of your project as
.env
- Replace the placeholder values with your actual values
- Start the Azure DevOps MCP Server
For example:
# Copy the PAT authentication example
cp docs/examples/pat-authentication.env .env
# Edit the .env file with your values
nano .env
# Start the server
npm start
For more detailed information about authentication methods, setup instructions, and troubleshooting, refer to the Authentication Guide.