@azure-devops/mcp 2.7.0-nightly.20260430 → 2.7.0-nightly.20260502

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.
@@ -341,8 +341,9 @@ function configureTestPlanTools(server, tokenProvider, connectionProvider, userA
341
341
  try {
342
342
  const connection = await connectionProvider();
343
343
  const testResultsApi = await connection.getTestResultsApi();
344
- // Build filter expression for outcomes if specified
345
- const outcomeFilter = outcomes?.map((o) => `Outcome eq '${o}'`).join(" or ");
344
+ // Build filter expression for outcomes if specified.
345
+ // The API accepts: Outcome eq Failed,Passed (unquoted, comma-separated)
346
+ const outcomeFilter = outcomes?.length ? `Outcome eq ${outcomes.join(",")}` : undefined;
346
347
  // Fetch test result details for the build in a single API call
347
348
  // This is more efficient than getTestRuns + getTestResults per run,
348
349
  // especially for builds with many test runs (e.g., cloud testing with one run per test case)
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const packageVersion = "2.7.0-nightly.20260430";
1
+ export const packageVersion = "2.7.0-nightly.20260502";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-devops/mcp",
3
- "version": "2.7.0-nightly.20260430",
3
+ "version": "2.7.0-nightly.20260502",
4
4
  "mcpName": "microsoft.com/azure-devops",
5
5
  "description": "MCP server for interacting with Azure DevOps",
6
6
  "license": "MIT",