Skip to main content
Glama

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
NameRequiredDescriptionDefault
projectYesThe 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 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 }
  • 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 ]

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/xrmghost/mcp-azure-devops'

If you have feedback or need assistance with the MCP directory API, please join our Discord server