UNPKG

@gsb-core/mcp-docs

Version:

Documentation for GSB MCP implementations

44 lines (43 loc) 1.58 kB
/** * GSB Entity Service Documentation * ============================== * * This file serves as the central hub for all API documentation. * It imports documentation from individual files and provides a unified interface * for accessing documentation for specific methods or the entire API. */ /** * Returns documentation for the specified operation or general API documentation * @param operation - The operation to get documentation for * @return Documentation in markdown format */ export declare function getDocs(operation?: string): string; /** * Returns a brief summary of the specified operation or general API overview * @param operation - The operation to get summary for * @return Brief summary in markdown format */ export declare function getSummary(operation?: string): string; /** * Returns general API documentation * @return General API documentation in markdown format */ export declare function getApiDocs(): string; /** * Returns the GSB Serverless Functions documentation. * @return GSB Serverless Functions documentation in markdown format */ export declare function getServerlessFunctionDocs(): string; /** * Returns the GSB Schema Management documentation. * @return GSB Schema Management documentation in markdown format */ export declare function getSchemaDocs(): string; declare const _default: { getDocs: typeof getDocs; getSummary: typeof getSummary; getApiDocs: typeof getApiDocs; getServerlessFunctionDocs: typeof getServerlessFunctionDocs; getSchemaDocs: typeof getSchemaDocs; }; export default _default;