@azure-devops/mcp 2.7.0-nightly.20260604 → 2.7.0-nightly.20260606

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -111,7 +111,7 @@ async function main() {
111
111
  };
112
112
  logger.debug("PAT mode: global fetch interceptor installed to rewrite Bearer -> Basic auth headers");
113
113
  }
114
- // removing prompts untill further notice
114
+ // removing prompts until further notice
115
115
  // configurePrompts(server);
116
116
  configureAllTools(server, authenticator, getAzureDevOpsClient(authenticator, userAgentComposer, argv.authentication), () => userAgentComposer.userAgent, enabledDomains);
117
117
  const transport = new StdioServerTransport();
@@ -135,7 +135,7 @@ function configureWorkItemTools(server, tokenProvider, connectionProvider, userA
135
135
  };
136
136
  }
137
137
  });
138
- server.tool(WORKITEM_TOOLS.my_work_items, "Retrieve a list of work items relevent to the authenticated user. If a project is not specified, you will be prompted to select one.", {
138
+ server.tool(WORKITEM_TOOLS.my_work_items, "Retrieve a list of work items relevant to the authenticated user. If a project is not specified, you will be prompted to select one.", {
139
139
  project: z.string().optional().describe("The name or ID of the Azure DevOps project. Reuse from prior context if already known. If not provided, a project selection prompt will be shown."),
140
140
  type: z.enum(["assignedtome", "myactivity"]).default("assignedtome").describe("The type of work items to retrieve. Defaults to 'assignedtome'."),
141
141
  top: z.coerce.number().default(50).describe("The maximum number of work items to return. Defaults to 50."),
@@ -737,7 +737,7 @@ function configureWorkItemTools(server, tokenProvider, connectionProvider, userA
737
737
  value: encodeFormattedValue(value, format),
738
738
  }));
739
739
  // Check if any field has format === "Markdown" and add the multilineFieldsFormat operation
740
- // this should only happen for large text fields, but since we dont't know by field name, lets assume if the users
740
+ // this should only happen for large text fields, but since we don't know by field name, lets assume if the users
741
741
  // passes a value longer than 100 characters, then we can set the format to Markdown
742
742
  fields.forEach(({ name, value, format }) => {
743
743
  if (value.length > 100 && format === "Markdown") {
@@ -100,7 +100,7 @@ function configureWorkTools(server, _, connectionProvider) {
100
100
  server.tool(WORK_TOOLS.list_iterations, "List all iterations in a specified Azure DevOps project. If a project is not specified, you will be prompted to select one.", {
101
101
  project: z.string().optional().describe("The name or ID of the Azure DevOps project. Reuse from prior context if already known. If not provided, a project selection prompt will be shown."),
102
102
  depth: z.coerce.number().default(2).describe("Depth of children to fetch."),
103
- excludedIds: z.array(z.coerce.number().min(1)).optional().describe("An optional array of iteration IDs, and thier children, that should not be returned."),
103
+ excludedIds: z.array(z.coerce.number().min(1)).optional().describe("An optional array of iteration IDs, and their children, that should not be returned."),
104
104
  }, async ({ project, depth, excludedIds: ids }) => {
105
105
  try {
106
106
  const connection = await connectionProvider();
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const packageVersion = "2.7.0-nightly.20260604";
1
+ export const packageVersion = "2.7.0-nightly.20260606";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-devops/mcp",
3
- "version": "2.7.0-nightly.20260604",
3
+ "version": "2.7.0-nightly.20260606",
4
4
  "mcpName": "microsoft.com/azure-devops",
5
5
  "description": "MCP server for interacting with Azure DevOps",
6
6
  "license": "MIT",
@@ -41,7 +41,7 @@
41
41
  "@azure/identity": "^4.10.0",
42
42
  "@azure/msal-node": "^5.0.6",
43
43
  "@modelcontextprotocol/sdk": "1.29.0",
44
- "azure-devops-extension-api": "^4.264.0",
44
+ "azure-devops-extension-api": "^5.272.3",
45
45
  "azure-devops-extension-sdk": "^4.0.2",
46
46
  "azure-devops-node-api": "^15.1.2",
47
47
  "winston": "^3.18.3",