@mcp-consultant-tools/azure-devops 33.0.0-beta.4 → 33.0.0

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.
@@ -91,21 +91,21 @@ export const SYNC_FROM_FILE_EXAMPLES = [
91
91
  export const SYNC_TASKS_TO_FILE_EXAMPLES = [
92
92
  {
93
93
  label: "Pull tasks for single User Story",
94
- value: 'parentIds: [70824]'
94
+ value: 'parentIds: [12345]'
95
95
  },
96
96
  {
97
97
  label: "Pull tasks for multiple User Stories",
98
- value: 'parentIds: [70824, 70825, 70826]'
98
+ value: 'parentIds: [12345, 12346, 12347]'
99
99
  },
100
100
  ];
101
101
  export const SYNC_TASKS_FROM_FILE_EXAMPLES = [
102
102
  {
103
103
  label: "Push tasks for single parent",
104
- value: 'parentIds: [70824]'
104
+ value: 'parentIds: [12345]'
105
105
  },
106
106
  {
107
107
  label: "Push tasks for multiple parents",
108
- value: 'parentIds: [70824, 70825]'
108
+ value: 'parentIds: [12345, 12346]'
109
109
  },
110
110
  ];
111
111
  // ========================================
@@ -77,7 +77,7 @@ export function registerWorkItemTools(server, ctx) {
77
77
  description: "Execute a saved Azure DevOps query by its query ID (GUID). Returns a compact summary by default (ID, Title, Assigned To, State, Severity, Priority, Tags, Story Points, Resolved Reason). Use detail='full' for all fields.",
78
78
  inputSchema: {
79
79
  project: z.string().describe("The project name"),
80
- queryId: z.string().describe(descWithExamples("The saved query GUID. Found in ADO query URLs: https://dev.azure.com/{org}/{project}/_queries/query/{queryId}/", [{ label: "From URL", value: "f8c22439-f72d-4018-b863-a52396b26c4b" }])),
80
+ queryId: z.string().describe(descWithExamples("The saved query GUID. Found in ADO query URLs: https://dev.azure.com/{org}/{project}/_queries/query/{queryId}/", [{ label: "From URL", value: "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" }])),
81
81
  maxResults: zCoerceNumber().optional().describe("Maximum number of results (default: 50)"),
82
82
  detail: z.enum(['summary', 'full']).optional().describe("Level of detail: 'summary' (default) returns key fields only, 'full' returns all fields expanded"),
83
83
  fields: z.array(z.string()).optional().describe(descWithExamples("Custom list of ADO field reference names to return. Overrides the default summary fields.", [{ label: "Effort and state", value: '["System.Title", "System.State", "Microsoft.VSTS.Scheduling.Effort"]' }])),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcp-consultant-tools/azure-devops",
3
- "version": "33.0.0-beta.4",
3
+ "version": "33.0.0",
4
4
  "description": "MCP server for Azure DevOps integration - wikis, work items, pull requests, and variable group read access",
5
5
  "type": "module",
6
6
  "main": "./build/index.js",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@azure/identity": "^4.13.0",
46
- "@mcp-consultant-tools/core": "33.0.0-beta.1",
46
+ "@mcp-consultant-tools/core": "33.0.0",
47
47
  "@modelcontextprotocol/ext-apps": "^1.1.2",
48
48
  "@modelcontextprotocol/sdk": "^1.0.4",
49
49
  "axios": "^1.8.3",