Azure DevOps Boards work items over MCP (stdio). Requires Bun, org, project, and PAT.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-broisnischal-azure-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Azure DevOps Boards work items (stdio transport). Use it from Cursor, Claude Desktop, or any MCP host that supports local stdio servers.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops / productivity
MCP server for using the GitLab API
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for io.github.broisnischal/azure-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for Azure DevOps Boards work items (stdio transport). Use it from Cursor, Claude Desktop, or any MCP host that supports local stdio servers.
Requires Bun (the CLI runs TypeScript via the bun shebang).
| Variable | Description |
|---|---|
AZURE_ORG | Azure DevOps organization name (URL segment, e.g. contoso) |
AZURE_PROJECT | Project name |
AZURE_PAT | PAT string (keep secret) |
You can set them in the shell, in a .env file next to the project (Bun loads it), or in ~/.config/azure-boards-mcp/.env (one key per line: KEY=value). Values already set in the environment are not overwritten by the config file.
git clone https://github.com/broisnischal/azure-mcp.git
cd azure-mcp
bun install
export AZURE_ORG=your-org
export AZURE_PROJECT=your-project
export AZURE_PAT=your-pat
bun run src/index.ts
Or use the package script:
bun run start
After the package is published:
export AZURE_ORG=your-org
export AZURE_PROJECT=your-project
export AZURE_PAT=your-pat
bunx azure-board-mcp@1.0.0
Global install (optional):
npm install -g azure-board-mcp
azure-boards-mcp
~/.cursor/mcp.json or project .cursor/mcp.json)Add a stdio server entry. Replace the placeholders with your org, project, and PAT (or use ${env:AZURE_PAT} and export the variable in your environment).
{
"mcpServers": {
"azure-boards": {
"command": "bun",
"args": ["run", "/absolute/path/to/azure-mcp/src/index.ts"],
"env": {
"AZURE_ORG": "your-org",
"AZURE_PROJECT": "your-project",
"AZURE_PAT": "your-pat"
}
}
}
}
Using the published package instead of a local path:
{
"mcpServers": {
"azure-boards": {
"command": "bunx",
"args": ["azure-board-mcp@1.0.0"],
"envFile": "${userHome}/.config/azure-boards-mcp/.env"
}
}
}
or
{
"io.github.broisnischal/azure-mcp": {
"command": "bunx",
"args": ["azure-board-mcp@1.0.0"],
"env": {
"AZURE_ORG": "Your Azure Organization",
"AZURE_PROJECT": "azure specific project",
"AZURE_PAT": "your pat"
}
}
}
Restart Cursor after editing MCP config.
Edit the MCP config file (Claude docs) and add a similar command / args / env block under mcpServers.
Server id: io.github.broisnischal/azure-mcp. Discovery metadata is on the Model Context Protocol Registry; the runnable artifact is the npm package azure-board-mcp.
MIT