list_wikiList all wikis in a projectInput schema{
"type": "object",
"properties": {
"organization": {
"type": "string",
"description": "Azure DevOps organization name"
},
"project": {
"type": "string",
"description": "Project name"
}
},
"required": []
} | — | | — |
search_wikiSearch across wiki content using Azure DevOps Search APIInput schema{
"type": "object",
"properties": {
"organization": {
"type": "string",
"description": "Azure DevOps organization name"
},
"project": {
"type": "string",
"description": "Project name"
},
"searchText": {
"type": "string",
"description": "Search query string"
},
"wikiId": {
"type": "string",
"description": "Optional specific wiki identifier"
}
},
"required": [
"searchText"
]
} | — | | — |
wiki_get_pageGet content of a specific wiki pageInput schema{
"type": "object",
"properties": {
"organization": {
"type": "string",
"description": "Azure DevOps organization name"
},
"project": {
"type": "string",
"description": "Project name"
},
"wikiId": {
"type": "string",
"description": "Wiki identifier"
},
"path": {
"type": "string",
"description": "Page path or page ID"
}
},
"required": [
"wikiId",
"path"
]
} | — | | — |
wiki_get_page_treeRetrieve hierarchical page structure from wikiInput schema{
"type": "object",
"properties": {
"organization": {
"type": "string",
"description": "Azure DevOps organization name"
},
"project": {
"type": "string",
"description": "Project name"
},
"wikiId": {
"type": "string",
"description": "Wiki identifier"
},
"depth": {
"type": "number",
"description": "Optional maximum depth to retrieve"
}
},
"required": [
"wikiId"
]
} | — | | — |
wiki_update_pageUpdate content of an existing wiki page or create a new page if it does not existInput schema{
"type": "object",
"properties": {
"organization": {
"type": "string",
"description": "Azure DevOps organization name"
},
"project": {
"type": "string",
"description": "Project name"
},
"wikiId": {
"type": "string",
"description": "Wiki identifier"
},
"path": {
"type": "string",
"description": "Page path or page ID"
},
"content": {
"type": "string",
"description": "New page content (Markdown)"
}
},
"required": [
"wikiId",
"path",
"content"
]
} | — | | — |