Azure DevOps Boards work items over MCP (stdio). Requires Bun, org, project, and PAT.
{
"mcpServers": {
"io-github-broisnischal-azure-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Azure DevOps Boards work items over MCP (stdio). Requires Bun, org, project, and PAT.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 13 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP Server for kubernetes management commands
Model Context Protocol (MCP) server for Kubernetes and OpenShift
The power of Claude Code / GeminiCLI / CodexCLI + [Gemini / OpenAI / OpenRouter / Azure / Grok / Ollama / Custom Model / All Of The Above] working as one.
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