# Azure MCP FastMCP Server
A Model Context Protocol (MCP) server that provides Azure DevOps integration through a set of tools for managing projects, work items, teams.
## Table of Contents
- [Azure MCP FastMCP Server](#azure-mcp-fastmcp-server)
- [Table of Contents](#table-of-contents)
- [š Features](#-features)
- [š¦ Installation](#-installation)
- [Using npx (Recommended)](#using-npx-recommended)
- [Local Development](#local-development)
- [š§ Configuration](#-configuration)
- [Environment Variables](#environment-variables)
- [Setting Environment Variables](#setting-environment-variables)
- [Method 1: Direct Environment Variables](#method-1-direct-environment-variables)
- [Method 2: Using .env File](#method-2-using-env-file)
- [Method 3: System Environment Variables](#method-3-system-environment-variables)
- [š ļø Available Tools](#ļø-available-tools)
- [š Azure DevOps Permissions](#-azure-devops-permissions)
- [š Usage Examples](#-usage-examples)
- [Basic Usage](#basic-usage)
- [With MCP Client Configuration](#with-mcp-client-configuration)
- [Bulk Create Work Items](#bulk-create-work-items)
- [Assign Work Item to Iteration](#assign-work-item-to-iteration)
- [š ļø Development](#ļø-development)
- [Prerequisites](#prerequisites)
- [Development Commands](#development-commands)
- [Project Structure](#project-structure)
- [š License](#-license)
- [š¤ Contributing](#-contributing)
- [š Support](#-support)
- [ā ļø Known Issues](#ļø-known-issues)
## š Features
- **Standalone Executable**: No dependencies required when using npx
- **Azure DevOps Integration**: Full access to Azure DevOps REST API
- **MCP Protocol**: Compatible with any MCP client
- **Multiple Tools**: Projects, Work Items, Teams, and Policies management
## š¦ Installation
### Using npx (Recommended)
```bash
# No installation required - runs directly
npx -y @ahmedrowaihi/azure-mcp-fastmcp
```
### Local Development
```bash
# Clone the repository
git clone https://github.com/ahmedrowaihi/azure-mcp-fastmcp.git
cd azure-mcp-fastmcp
# Install dependencies
bun install
# Build the project
bun run build
# Run the built server
bun run dist/main.js
```
## š§ Configuration
### Environment Variables
The server requires the following environment variables:
```bash
# Required: Your Azure DevOps organization URL
AZURE_ORG_URL=https://dev.azure.com/yourorg
# Required: Your Azure DevOps Personal Access Token (PAT)
AZURE_PERSONAL_ACCESS_TOKEN=your_pat_here
```
### Setting Environment Variables
#### Method 1: Direct Environment Variables
```bash
AZURE_ORG_URL=https://dev.azure.com/yourorg \
AZURE_PERSONAL_ACCESS_TOKEN=your_token \
npx -y @ahmedrowaihi/azure-mcp-fastmcp
```
#### Method 2: Using .env File
Create a `.env` file in your project root:
```env
AZURE_ORG_URL=https://dev.azure.com/yourorg
AZURE_PERSONAL_ACCESS_TOKEN=your_token
```
Then run:
```bash
npx dotenv -e .env -- npx -y @ahmedrowaihi/azure-mcp-fastmcp
```
#### Method 3: System Environment Variables
Add to your shell profile (`~/.bashrc`, `~/.zshrc`, etc.):
```bash
export AZURE_ORG_URL="https://dev.azure.com/yourorg"
export AZURE_PERSONAL_ACCESS_TOKEN="your_token"
```
## š ļø Available Tools
- [Tools](./mcp/resources/tools.md)
## š Azure DevOps Permissions
Your Personal Access Token (PAT) needs the following permissions:
- **Code**: Read (for repository access)
- **Work Items**: Read & Write (for work item management)
- **Project and Team**: Read (for project and team information)
- **Policy**: Read (for branch policy access)
## š Usage Examples
### Basic Usage
```bash
# Start the MCP server
npx -y @ahmedrowaihi/azure-mcp-fastmcp
```
### With MCP Client Configuration
If using an MCP client like Claude Desktop, add to your configuration:
```json
{
"mcpServers": {
"azure-devops": {
"command": "npx",
"args": ["-y", "@ahmedrowaihi/azure-mcp-fastmcp"],
"env": {
"AZURE_ORG_URL": "https://dev.azure.com/yourorg",
"AZURE_PERSONAL_ACCESS_TOKEN": "your_token"
}
}
}
}
```
### Bulk Create Work Items
```json
{
"project": "MyProject",
"items": [
{
"type": "Epic",
"title": "Epic 1",
"children": [
{
"type": "Feature",
"title": "Feature A",
"children": [
{
"type": "User Story",
"title": "Story 1",
"children": [
{ "type": "Task", "title": "Task X" },
{ "type": "Task", "title": "Task Y" }
]
}
]
}
]
}
]
}
```
### Assign Work Item to Iteration
```json
{
"id": 12345,
"iterationId": "MyProject\\Iteration 1"
}
```
## š ļø Development
### Prerequisites
- [Bun](https://bun.sh) (JavaScript runtime)
- Node.js 18+ (for compatibility)
### Development Commands
```bash
# Install dependencies
bun install
# Build the project
bun run build
# Start development server
bun run dev
# Run the built server
bun run dist/main.js
```
### Project Structure
```
āāā azure/ # Azure DevOps services and connection
āāā formatters/ # Data formatting utilities
āāā mcp/ # MCP server and tools
āāā dist/ # Built executable (generated)
āāā main.ts # Entry point
āāā package.json # Project configuration
```
## š License
This project is licensed under the MIT License.
## š¤ Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
## š Support
If you encounter any issues or have questions, please open an issue on GitHub.
---
**Note**: This MCP server is designed to be a standalone executable that doesn't require installing dependencies when used with npx. All dependencies are bundled into the final executable for optimal user experience.
---
## ā ļø Known Issues
- **Iteration Node Update Limitation:**
Updating project-level iteration node dates (start/end) via the Azure DevOps SDK fails with "Iteration node not found" even when the node is confirmed to exist and is fetchable by ID. All tested path formats fail for update/fetch by path, but fetching by ID works. This may be an SDK bug, REST/SOAP mismatch, or permissions issue. If you encounter this, consider using the Azure DevOps REST API directly or check for updates to the SDK.