@azure-devops/mcp 2.7.0-nightly.20260608 → 2.7.0-nightly.20260610

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.
@@ -1287,7 +1287,7 @@ function configureRepoTools(server, tokenProvider, connectionProvider, userAgent
1287
1287
  rightFileStartOffset: z
1288
1288
  .number()
1289
1289
  .optional()
1290
- .describe("Position of first character of the thread's span in right file. The line number of a thread's position. The character offset of a thread's position inside of a line. Starts at 1. Must be set if rightFileStartLine is also specified. (optional)"),
1290
+ .describe("Start character offset of the thread's span within the line in the right file. The character offset of a thread's position inside of a line. Starts at 1. Must be set if rightFileStartLine is also specified. (optional)"),
1291
1291
  rightFileEndLine: z
1292
1292
  .number()
1293
1293
  .optional()
@@ -1295,7 +1295,7 @@ function configureRepoTools(server, tokenProvider, connectionProvider, userAgent
1295
1295
  rightFileEndOffset: z
1296
1296
  .number()
1297
1297
  .optional()
1298
- .describe("Position of last character of the thread's span in right file. The character offset of a thread's position inside of a line. Must be set if rightFileEndLine is also specified. (optional)"),
1298
+ .describe("Exclusive end character offset of the thread's span within the line in the right file. This value is exclusive: to cover the entire line, set it to (length of the original line text) + 1. When posting a suggestion, always calculate this from the existing file content being replaced, not from the suggestion or replacement text. Must be set if rightFileEndLine is also specified. (optional)"),
1299
1299
  }, async ({ repositoryId, pullRequestId, content, project, filePath, status, rightFileStartLine, rightFileStartOffset, rightFileEndLine, rightFileEndOffset }) => {
1300
1300
  try {
1301
1301
  const connection = await connectionProvider();
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const packageVersion = "2.7.0-nightly.20260608";
1
+ export const packageVersion = "2.7.0-nightly.20260610";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-devops/mcp",
3
- "version": "2.7.0-nightly.20260608",
3
+ "version": "2.7.0-nightly.20260610",
4
4
  "mcpName": "microsoft.com/azure-devops",
5
5
  "description": "MCP server for interacting with Azure DevOps",
6
6
  "license": "MIT",