get_wikis
Retrieve all wikis from a specified Azure DevOps project to access documentation and knowledge bases for development workflows.
Instructions
Gets all wikis in a project.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project | Yes | The name or ID of the project. |
Implementation Reference
- Core handler implementation that retrieves all wikis for a given project using the Azure DevOps wiki_client.def get_wikis(self, project): return self.wiki_client.get_all_wikis(project=project)
- mcp_azure_devops/server.py:426-439 (registration)MCP tool registration defining the get_wikis tool, its description, and input schema requiring a 'project' parameter.types.Tool( name="get_wikis", description="Gets all wikis in a project.", inputSchema={ "type": "object", "properties": { "project": { "type": "string", "description": "The name or ID of the project." }, }, "required": ["project"], "additionalProperties": False }
- mcp_azure_devops/server.py:982-992 (handler)Server-side MCP tool handler that invokes the client.get_wikis method and formats the wiki list response for the MCP protocol.elif name == "get_wikis": wikis = self.client.get_wikis(**arguments) return [ { "id": wiki.id, "name": wiki.name, "url": wiki.url, "remote_url": wiki.remote_url, } for wiki in wikis ]