@azure-devops/mcp 1.3.1-nightly.20250814 → 1.3.1-nightly.20250815
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/README.md +2 -6
- package/dist/prompts.js +5 -5
- package/dist/tools/wiki.js +0 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -88,11 +88,7 @@ Interact with these Azure DevOps services:
|
|
|
88
88
|
- **wit_update_work_items_batch**: Update work items in batch.
|
|
89
89
|
- **wit_work_items_link**: Link work items together in batch.
|
|
90
90
|
- **wit_work_item_unlink**: Unlink one or many links from a work item.
|
|
91
|
-
|
|
92
|
-
#### Deprecated Tools
|
|
93
|
-
|
|
94
|
-
- **wit_add_child_work_item**: Replaced by `wit_add_child_work_items` to allow creating one or more child items per call.
|
|
95
|
-
- **wit_close_and_link_workitem_duplicates**: This tool is no longer needed. Finding and marking duplicates can be done with other tools.
|
|
91
|
+
- **wit_add_artifact_link**: Link to artifacts like branch, pull request, commit, and build.
|
|
96
92
|
|
|
97
93
|
### 📁 Repositories
|
|
98
94
|
|
|
@@ -153,7 +149,7 @@ Interact with these Azure DevOps services:
|
|
|
153
149
|
- **wiki_get_wiki**: Get the wiki by wikiIdentifier.
|
|
154
150
|
- **wiki_list_pages**: Retrieve a list of wiki pages for a specific wiki and project.
|
|
155
151
|
- **wiki_get_page_content**: Retrieve wiki page content by wikiIdentifier and path.
|
|
156
|
-
- **wiki_create_or_update_page**:
|
|
152
|
+
- **wiki_create_or_update_page**: Create or update wiki pages with full content support.
|
|
157
153
|
|
|
158
154
|
### 🔎 Search
|
|
159
155
|
|
package/dist/prompts.js
CHANGED
|
@@ -4,7 +4,7 @@ import { z } from "zod";
|
|
|
4
4
|
import { CORE_TOOLS } from "./tools/core.js";
|
|
5
5
|
import { WORKITEM_TOOLS } from "./tools/workitems.js";
|
|
6
6
|
function configurePrompts(server) {
|
|
7
|
-
server.prompt("
|
|
7
|
+
server.prompt("Projects", "Lists all projects in the Azure DevOps organization.", {}, () => ({
|
|
8
8
|
messages: [
|
|
9
9
|
{
|
|
10
10
|
role: "user",
|
|
@@ -12,13 +12,13 @@ function configurePrompts(server) {
|
|
|
12
12
|
type: "text",
|
|
13
13
|
text: String.raw `
|
|
14
14
|
# Task
|
|
15
|
-
Use the '${CORE_TOOLS.list_projects}' tool to retrieve all projects in the current Azure DevOps organization.
|
|
16
|
-
Present the results in a table with the following columns:
|
|
15
|
+
Use the '${CORE_TOOLS.list_projects}' tool to retrieve all 'wellFormed' projects in the current Azure DevOps organization.
|
|
16
|
+
Present the results in alphabetical order in a table with the following columns: Name and ID.`,
|
|
17
17
|
},
|
|
18
18
|
},
|
|
19
19
|
],
|
|
20
20
|
}));
|
|
21
|
-
server.prompt("
|
|
21
|
+
server.prompt("Teams", "Retrieves all teams for a given Azure DevOps project.", { project: z.string() }, ({ project }) => ({
|
|
22
22
|
messages: [
|
|
23
23
|
{
|
|
24
24
|
role: "user",
|
|
@@ -27,7 +27,7 @@ Present the results in a table with the following columns: Project ID, Name, and
|
|
|
27
27
|
text: String.raw `
|
|
28
28
|
# Task
|
|
29
29
|
Use the '${CORE_TOOLS.list_project_teams}' tool to retrieve all teams for the project '${project}'.
|
|
30
|
-
Present the results in a table with the following columns:
|
|
30
|
+
Present the results in alphabetical order in a table with the following columns: Name and Id`,
|
|
31
31
|
},
|
|
32
32
|
},
|
|
33
33
|
],
|
package/dist/tools/wiki.js
CHANGED
|
@@ -115,7 +115,6 @@ function configureWikiTools(server, tokenProvider, connectionProvider) {
|
|
|
115
115
|
path: z.string().describe("The path of the wiki page (e.g., '/Home' or '/Documentation/Setup')."),
|
|
116
116
|
content: z.string().describe("The content of the wiki page in markdown format."),
|
|
117
117
|
project: z.string().optional().describe("The project name or ID where the wiki is located. If not provided, the default project will be used."),
|
|
118
|
-
comment: z.string().optional().describe("Optional comment for the page update."),
|
|
119
118
|
etag: z.string().optional().describe("ETag for editing existing pages (optional, will be fetched if not provided)."),
|
|
120
119
|
}, async ({ wikiIdentifier, path, content, project, etag }) => {
|
|
121
120
|
try {
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = "1.3.1-nightly.
|
|
1
|
+
export const packageVersion = "1.3.1-nightly.20250815";
|