# Azure DevOps MCP Server - Environment Variables
# Azure DevOps Organization Name
# This is the name of your Azure DevOps organization
# Example: mycompany
AZURE_DEVOPS_ORG=your-organization-name
# Azure DevOps Organization URL (required)
# e.g., https://dev.azure.com/your-organization
AZURE_DEVOPS_ORG_URL=https://dev.azure.com/your-organization
# Azure DevOps Personal Access Token (required)
# Create one at: https://dev.azure.com/your-organization/_usersSettings/tokens
# Required scopes: Code (Read & Write), Work Items (Read & Write), Build (Read & Execute),
# Project and Team (Read), Graph (Read), Release (Read & Execute)
AZURE_DEVOPS_PAT=your-personal-access-token
# Azure DevOps Project Name (Optional)
# If specified, this project will be used as the default for operations
# Example: MyProject
AZURE_DEVOPS_PROJECT=your-project-name
# Default Project to use when not specified (optional)
AZURE_DEVOPS_DEFAULT_PROJECT=your-default-project
# API Version to use (optional, defaults to latest)
# AZURE_DEVOPS_API_VERSION=6.0
# Server Configuration
PORT=3000
HOST=localhost
# Logging Level (debug, info, warn, error)
LOG_LEVEL=info