UNPKG

@gsb-core/mcp-docs

Version:

Documentation for GSB MCP implementations

47 lines (46 loc) 1.62 kB
/** * GSB Schema Management Documentation * ============================== * * This file provides detailed documentation for GSB Schema Management tools, * including entity definition operations, property management, and relationship handling. */ /** * Returns documentation for the getCommonPropertyDefs operation */ export declare function getCommonPropertyDefsDocumentation(): string; /** * Returns documentation for the createEntityDef operation */ export declare function createEntityDefDocumentation(): string; /** * Returns documentation for the updateEntityDef operation */ export declare function updateEntityDefDocumentation(): string; /** * Returns documentation for the addProperty operation */ export declare function addPropertyDocumentation(): string; /** * Returns documentation for the removeProperty operation */ export declare function removePropertyDocumentation(): string; /** * Returns documentation for the updateProperty operation */ export declare function updatePropertyDocumentation(): string; /** * Returns documentation for the getEntityDef operation */ export declare function getEntityDefDocumentation(): string; /** * Returns documentation for the queryEntityDefs operation */ export declare function queryEntityDefsDocumentation(): string; /** * Returns documentation for the schema management tools * @param methodName {string=} Optional method name to get specific documentation * @return {string} markdown documentation for the specified method or complete API */ export declare function getDefDocs(methodName?: string): string; export default getDefDocs;