MCP N8N Azure Devops
Most developer tooling work still happens through a UI a human drives. Azure DevOps MCP server moves it into the conversation instead. MCP N8N Azure Devops.
A Model Context Protocol (MCP) server implementation for Azure DevOps, allowing AI assistants to interact with Azure DevOps APIs through a standardized protocol.
This server implements the Model Context Protocol (MCP) for Azure DevOps, enabling AI assistants like Claude to interact with Azure DevOps resources securely. The server acts as a bridge between AI models and Azure DevOps APIs, providing a standardized way to:
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
The server publishes 14 tools. What each one is for:
get_me — Get details of the authenticated user (id, displayName, email)list_organizations — List all accessible organizationslist_projects — List all projects in an organizationget_project — Get details of a specific projectget_project_details — Get comprehensive details of a project including process, work item types, and teamslist_repositories — List all repositories in a projectget_repository — Get details of a specific repositoryget_repository_details — Get detailed information about a repository including statistics and refsget_file_content — Get content of a file or directory from a repositoryget_work_item — Retrieve a work item by IDcreate_work_item — Create a new work itemupdate_work_item — Update an existing work itemConfiguration is passed through the environment: AZURE_DEVOPS_ORG_URL, AZURE_DEVOPS_AUTH_METHOD, AZURE_DEVOPS_DEFAULT_PROJECT, AZURE_DEVOPS_PAT, AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Azure DevOps's toolset — get_me, list_organizations, list_projects and 11 more — is a fair guide to whether it matches your workflow. It is maintained by ramosjuan24; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| get_me | Get details of the authenticated user (id, displayName, email) |
| list_organizations | List all accessible organizations |
| list_projects | List all projects in an organization |
| get_project | Get details of a specific project |
| get_project_details | Get comprehensive details of a project including process, work item types, and teams |
| list_repositories | List all repositories in a project |
| get_repository | Get details of a specific repository |
| get_repository_details | Get detailed information about a repository including statistics and refs |
| get_file_content | Get content of a file or directory from a repository |
| get_work_item | Retrieve a work item by ID |
| create_work_item | Create a new work item |
| update_work_item | Update an existing work item |
| list_work_items | List work items in a project |
| manage_work_item_link | Add, remove, or update links between work items |
{
"mcpServers": {
"azureDevOps": {
"command": "npx",
"args": ["-y", "@ramosjuan24/mcp-server-azure-devops"],
"env": {
"AZURE_DEVOPS_ORG_URL": "https://dev.azure.com/your-organization",
"AZURE_DEVOPS_AUTH_METHOD": "azure-identity",
"AZURE_DEVOPS_DEFAULT_PROJECT": "your-project-name"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| AZURE_DEVOPS_ORG_URL | Endpoint or connection string the server talks to. | Yes |
| AZURE_DEVOPS_AUTH_METHOD | Configuration value read at startup. | Optional |
| AZURE_DEVOPS_DEFAULT_PROJECT | Configuration value read at startup. | Optional |
| AZURE_DEVOPS_PAT | Configuration value read at startup. | Optional |
| AZURE_TENANT_ID | Configuration value read at startup. | Optional |
| AZURE_CLIENT_ID | Configuration value read at startup. | Optional |
| AZURE_CLIENT_SECRET | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.