Skip to main content
Glama

list_all_wikis_in_organization

Retrieve all wikis across all projects in an Azure DevOps organization to enable cross-project discovery and knowledge sharing.

Instructions

List all wikis across all projects in the organization for cross-project discovery.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler implementation that fetches all projects and aggregates wikis from each project using get_wikis.
    def list_all_wikis_in_organization(self): """ List all wikis across all projects in the organization. """ projects = self.get_projects() all_wikis = [] for project in projects: try: wikis = self.get_wikis(project.name) for wiki in wikis: all_wikis.append({ "project": project.name, "id": wiki.id, "name": wiki.name, "url": wiki.url, "remote_url": wiki.remote_url, }) except Exception: # Skip projects where we can't access wikis continue return all_wikis
  • Tool registration in the server's tool list, including the input schema (empty object, no parameters).
    types.Tool( name="list_all_wikis_in_organization", description="List all wikis across all projects in the organization for cross-project discovery.", inputSchema={ "type": "object", "properties": {}, "additionalProperties": False } ),
  • Thin dispatch handler in the server's _execute_tool method that delegates to the client's implementation.
    elif name == "list_all_wikis_in_organization": return self.client.list_all_wikis_in_organization()

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