Skip to main content
Glama

get_wiki_page

Retrieve Azure DevOps wiki page content by specifying the project, wiki identifier, and page path to access documentation and knowledge base articles.

Instructions

Gets a wiki page by its path.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesThe path of the wiki page.
projectYesThe name or ID of the project.
wiki_identifierYesThe name or ID of the wiki.

Implementation Reference

  • Core handler function that executes the tool logic by calling Azure DevOps WikiClient.get_page to retrieve the wiki page with content.
    def get_wiki_page(self, project, wiki_identifier, path): return self.wiki_client.get_page( project=project, wiki_identifier=wiki_identifier, path=path, include_content=True )
  • MCP server dispatch handler for the get_wiki_page tool, invokes the client method and formats the response as JSON.
    elif name == "get_wiki_page": page = self.client.get_wiki_page(**arguments) return { "path": page.page.path, "url": page.page.url, "content": page.page.content, }
  • Defines the tool schema with input parameters (project, wiki_identifier, path) and description for registration in MCP server.
    types.Tool( name="get_wiki_page", description="Gets a wiki page by its path.", inputSchema={ "type": "object", "properties": { "project": { "type": "string", "description": "The name or ID of the project." }, "wiki_identifier": { "type": "string", "description": "The name or ID of the wiki." }, "path": { "type": "string", "description": "The path of the wiki page." }, }, "required": ["project", "wiki_identifier", "path"], "additionalProperties": False } ),

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