/** * Xano CLI Documentation Index * * This module exports all documentation topics and provides * the cli_docs tool handler for the MCP server. */ import { z } from "zod"; import type { TopicDoc, CliDocsArgs } from "./types.js"; /** * All available documentation topics */ export declare const topics: Record; /** * Get list of all available topic names */ export declare function getTopicNames(): string[]; /** * Get topic descriptions for tool documentation */ export declare function getTopicDescriptions(): string; /** * Handler for the cli_docs tool */ export declare function handleCliDocs(args: CliDocsArgs): string; /** * Tool definition for MCP server */ export declare const cliDocsToolSpec: import("../tools/define_tool.js").BuiltTool<{ topic: z.ZodEnum<{ [x: string]: string; }>; detail_level: z.ZodOptional>; }, { documentation: z.ZodString; }>;