@tiberriver256/mcp-server-azure-devops
Version:
Azure DevOps reference server for the Model Context Protocol (MCP)
21 lines (20 loc) • 687 B
TypeScript
import { ListWikiPagesOptions } from './schema';
/**
* Summary information for a wiki page
*/
export interface WikiPageSummary {
id: number;
path: string;
url?: string;
order?: number;
}
/**
* List wiki pages from a wiki
*
* @param options Options for listing wiki pages
* @returns Array of wiki page summaries
* @throws {AzureDevOpsResourceNotFoundError} When the wiki is not found
* @throws {AzureDevOpsPermissionError} When the user does not have permission to access the wiki
* @throws {AzureDevOpsError} When an error occurs while fetching the wiki pages
*/
export declare function listWikiPages(options: ListWikiPagesOptions): Promise<WikiPageSummary[]>;