search_wiki_pages
Search for wiki pages by title or content within Azure DevOps projects to find relevant documentation and information.
Instructions
Search for wiki pages by title or content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | Yes | The name or ID of the project. | |
search_term | Yes | The term to search for in page titles and content. | |
wiki_identifier | Yes | The name or ID of the wiki. |
Input Schema (JSON Schema)
{
"properties": {
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"search_term": {
"description": "The term to search for in page titles and content.",
"type": "string"
},
"wiki_identifier": {
"description": "The name or ID of the wiki.",
"type": "string"
}
},
"required": [
"project",
"wiki_identifier",
"search_term"
],
"type": "object"
}