/** * Xano Meta API Documentation Index * * This module exports all documentation topics and provides * the meta_api_docs tool handler for the MCP server. */ import { z } from "zod"; import type { TopicDoc, MetaApiDocsArgs } 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 meta_api_docs tool */ export declare function handleMetaApiDocs(args: MetaApiDocsArgs): string; /** * Tool definition for MCP server */ export declare const metaApiDocsToolSpec: import("../tools/define_tool.js").BuiltTool<{ topic: z.ZodEnum<{ [x: string]: string; }>; detail_level: z.ZodOptional>; include_schemas: z.ZodOptional; }, { documentation: z.ZodString; }>;