wiki_get_wiki
Retrieve wiki content by specifying a unique identifier and project name or ID using the Azure DevOps MCP Server with PAT Authentication.
Instructions
Get the wiki by wikiIdentifier
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | No | The project name or ID where the wiki is located. If not provided, the default project will be used. | |
wikiIdentifier | Yes | The unique identifier of the wiki. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project": {
"description": "The project name or ID where the wiki is located. If not provided, the default project will be used.",
"type": "string"
},
"wikiIdentifier": {
"description": "The unique identifier of the wiki.",
"type": "string"
}
},
"required": [
"wikiIdentifier"
],
"type": "object"
}